-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.89 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
{
"name": "hilo3d-gltf-exporter",
"version": "0.1.0",
"description": "Hilo3d GLTFExporter",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode=development --config ./webpack.config.js --open --stats-error-details",
"build": "rm -rf dist && rm -rf temp && tsc && npm run rollup && npm run api-extractor",
"eslint": "eslint lib/**",
"rollup": "rollup -c rollup.config.js",
"eslint-fix": "eslint lib/** --fix",
"api-extractor": "api-extractor run --local --verbose",
"dev": "npm run start",
"version": "tnpm run build && git add -A",
"postpublish": "git push --tags",
"major": "npm version major",
"minor": "npm version minor",
"patch": "npm version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiloteam/GLTFExporter.git"
},
"author": "06wj",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiloteam/GLTFExporter/issues"
},
"homepage": "https://github.com/hiloteam/GLTFExporter#readme",
"dependencies": {
"hilo3d": "^1.16.2"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.28.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.7.1",
"rollup": "^2.77.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.32.1",
"ts-loader": "^9.3.1",
"tslib": "^2.4.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"files": [
"dist/",
"types/",
"package.json",
"README.md"
]
}