-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.37 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
{
"name": "@howt/data-file-vtf",
"version": "0.1.0",
"main": "dist/node/index.js",
"module": "dist/index.js",
"browser": "dist/browser/index.js",
"license": "MIT",
"type": "module",
"dependencies": {
"@howt/data-compressed-bc": "^0.10.1",
"@saschazar/wasm-webp": "^2.0.0",
"@sindresorhus/is": "^4.0.0",
"browser-or-node": "^1.3.0",
"canvas": "^2.6.1",
"chalk": "^4.0.0",
"decode-dxt": "^1.0.1",
"dxt-js": "^0.0.3",
"file-type": "^16.0.1",
"jimp": "^0.16.1",
"jsdom": "^16.4.0",
"ow": "^0.19.0",
"sharp": "^0.26.2",
"tga": "^1.0.4"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
"@babel/plugin-proposal-numeric-separator": "^7.12.5",
"@babel/plugin-proposal-partial-application": "^7.12.1",
"@babel/plugin-proposal-pipeline-operator": "^7.12.1",
"@babel/plugin-proposal-private-methods": "^7.12.1",
"@babel/plugin-proposal-private-property-in-object": "^7.12.1",
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
"@babel/plugin-syntax-import-assertions": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@pumpn/eslint-config": "^6.0.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"concurrently": "^5.3.0",
"documentation": "^13.1.0",
"eslint": "^7.12.1",
"jsdoc": "^3.6.6",
"jsdoc-babel": "^0.5.0",
"rollup": "^2.33.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-notify": "^1.1.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^4.2.0"
},
"scripts": {
"start": "yarn build:module && node ./dist/index.js",
"build:module": "rollup --config",
"build:node": "rollup --config ./rollup/node/rollup.config.js",
"build:browser": "rollup --config ./rollup/browser/rollup.config.js",
"docs": "rm -rf ./docs/ && jsdoc -c ./.jsdocrc -r --verbose",
"docs2": "rm -rf ./docs/ && documentation build src -f html -o docs --babel=babel.config.json"
},
"engines": {
"node": ">=14.x"
}
}