-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.7 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
{
"name": "terranova",
"version": "0.1.3",
"author": "isie",
"license": "MIT",
"description": "由武汉大学空间信息工程研究所使用 TypeScript 编写的三维数字地球引擎,并利用 WebAssembly 实现了高性能的空间分析。",
"homepage": "https://github.com/gy1016/terranova",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"gis",
"webgl",
"wasm"
],
"repository": {
"type": "git",
"url": "https://github.com/gy1016/terranova"
},
"files": [
"dist"
],
"scripts": {
"dev": "cross-env NODE_ENV=development rollup -cw --bundleConfigAsCjs -m inline",
"build": "rollup -c --bundleConfigAsCjs",
"test": "jest --passWithNoTests",
"lint": "eslint --ext .js,.ts .",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"prepare": "husky install",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"cross-env": "^7.0.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^4.1.2",
"rollup": "^3.2.3",
"rollup-plugin-glslify": "^1.3.1",
"rollup-plugin-serve": "^2.0.1",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.5.0",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.js|ts": []
},
"dependencies": {
"lerc": "^4.0.1"
}
}