-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
158 lines (158 loc) · 5.11 KB
/
package.json
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "@sakitam-gis/vis-engine",
"version": "1.5.3",
"description": "A sample gl render engine toolkit.",
"private": false,
"license": "BSD 3-Clause",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.js",
"commonjs": "dist/index.cjs.js",
"namespace": "ve",
"types": "dist/index.d.ts",
"author": "sakitam-fdd <[email protected]>",
"repository": {
"url": "https://github.com/sakitam-gis/vis-engine.git"
},
"keywords": [
"3d",
"webgl",
"vis",
"three"
],
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": {
"import": {
"production": "./dist/index.esm.js",
"development": "./dist/index.esm.js",
"default": "./dist/index.esm.js"
},
"require": {
"production": "./dist/index.cjs.js",
"development": "./dist/index.cjs.js",
"default": "./dist/index.cjs.js"
}
},
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"scripts": {
"dev": "rollup -wm --config rollup.config.ts --configPlugin esbuild --environment NODE_ENV:development",
"build": "rollup --config rollup.config.ts --configPlugin esbuild --environment NODE_ENV:production && pnpm run --filter=./adapters/* -r build",
"build:minify": "rollup --config rollup.config.ts --configPlugin esbuild --environment MINIFY,NODE_ENV:production && pnpm run --filter=./adapters/* -r build:minify",
"build:analyze": "cross-env BUILD_ANALYZER=true pnpm run build",
"build:docs": "pnpm run build && cd documents && pnpm run api && pnpm run build",
"build:docusaurus": "pnpm run build && cd documents && pnpm run build",
"lint": "eslint src --ext js,jsx,ts,tsx",
"prepublishOnly": "npm run build && npm run build:minify",
"test": "npm run build && npm run test-only",
"test-only": "vitest run",
"coverage": "vitest run --coverage",
"semantic-release": "semantic-release --branches master"
},
"dependencies": {
"colord": "^2.9.3",
"gl-matrix": "^3.4.3"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.19.4",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.18.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.25.0",
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-eslint": "^9.0.0",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^9.0.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vitest/coverage-c8": "^0.22.1",
"c8": "7.12.0",
"canvas": "^2.10.0",
"cross-env": "^7.0.3",
"esbuild": "^0.15.13",
"eslint": "^8.21.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest-image-snapshot": "^6.1.0",
"jsdom": "^21.1.0",
"lint-staged": "^13.0.3",
"multi-semantic-release": "^3.0.2",
"prettier": "^2.7.0",
"rollup": "^3.2.3",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^4.10.1",
"rollup-plugin-glslify": "^1.3.1",
"rollup-plugin-visualizer": "^5.8.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-web-worker-loader": "^1.6.0",
"semantic-release": "^21.1.2",
"terser": "^5.15.1",
"typedoc": "^0.25.7",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-not-exported": "^0.1.6",
"typescript": "^4.7.4",
"vitest": "^0.24.3",
"wait-for-expect": "3.0.2"
},
"engines": {
"node": ">= 14.18.1",
"npm": ">= 6.14.15"
},
"husky": {
"hooks": {
"pre-commit": "pnpm run lint",
"pre-push": "pnpm run test"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
]
},
"publishConfig": {
"access": "public"
}
}