-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.05 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@elchininet/isometric",
"version": "4.0.0",
"description": "A JavaScript library written in TypeScript to create isometric projections using SVGs",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"exports": {
".": {
"require": {
"types": "./index.d.ts",
"default": "./index.js"
},
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
}
},
"./node": {
"require": {
"types": "./node.d.ts",
"default": "./index.node.js"
},
"import": {
"types": "./esm/node.d.ts",
"default": "./esm/index.node.js"
}
}
},
"files": [
"esm/**/*",
"web/**/*",
"index.d.ts",
"node.d.ts",
"index.node.js",
"index.js"
],
"scripts": {
"clean": "./scripts/clean.sh",
"finish": "./scripts/finish.sh",
"build": "pnpm clean && rollup --config rollup.config.js --bundleConfigAsCjs && pnpm finish",
"demo": "webpack serve --open --config webpack.demo.config.js",
"docs": "webpack --config webpack.demo.publish.js --mode production",
"test:ts": "tsc --noEmit",
"test:lint": "eslint src/**/* tests/*.ts demo/**/*.js",
"test:unit": "jest --verbose",
"test:all": "pnpm test:ts && pnpm test:lint && pnpm test:unit",
"prepare": "pnpm build",
"prepublishOnly": "pnpm test:all",
"version": "git add .",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elchininet/isometric"
},
"keywords": [
"isometric",
"projection",
"isometric-projection",
"svg",
"draw",
"drawing",
"engineering",
"engineering-drawing",
"coordinates",
"graphics",
"typescript"
],
"author": "ElChiniNet",
"license": "Apache-2.0",
"peerDependencies": {
"jsdom": "^18.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"google-code-prettify": "^1.0.5",
"html-webpack-plugin": "^5.6.6",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"mini-css-extract-plugin": "^2.10.2",
"rimraf": "^6.1.3",
"rollup": "^4.60.0",
"rollup-plugin-dts": "^6.4.1",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"sass": "^1.98.0",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"tslib": "^2.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3"
},
"engines": {
"node": ">=12.22.0"
},
"dependencies": {
"jsdom": "^29.0.1"
},
"pnpm": {
"overrides": {
"lodash@>=4.0.0 <=4.17.22": ">=4.17.23",
"@isaacs/brace-expansion@<=5.0.0": ">=5.0.1"
}
}
}