-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.68 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
{
"name": "lamb3d",
"version": "1.1.0",
"description": "A 3d gis engine written in TypeScript and WebAssembly.",
"author": "lamb",
"license": "MIT",
"keywords": [
"gis",
"webgl",
"wasm"
],
"homepage": "https://github.com/gy1016/lamb3d",
"repository": {
"type": "git",
"url": "https://github.com/gy1016/lamb3d"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup -cw -m inline",
"build": "rm -rf dist && rollup -c",
"lint": "prettier --write .",
"test": "jest",
"docs": "typedoc"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@types/jest": "^29.0.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cross-env": "^7.0.3",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^29.0.3",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"rollup": "^2.70.1",
"rollup-plugin-glslify": "^1.2.1",
"rollup-plugin-serve": "^2.0.1",
"rollup-plugin-typescript2": "^0.32.1",
"semantic-release": "^19.0.3",
"ts-jest": "^29.0.0",
"tslib": "*",
"typedoc": "^0.23.10",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.{ts}": [
"eslint --fix",
"git add"
]
}
}