-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.14 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
{
"name": "webdggrid",
"version": "1.0.5",
"description": "Wasm package for DGGRID ",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.umd.js"
},
"./Webdggrid": {
"types": "./types/Webdggrid.d.ts",
"import": "./dist/Webdggrid.js",
"default": "./dist/Webdggrid.umd.js"
}
},
"main": "./dist/index.umd.js",
"module": "./dist/index.js",
"browser": "./dist/index.umd.js",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"types": "./types/index.d.ts",
"files": [
"dist/*.*",
"types/*",
"src-ts/*",
"lib-wasm/*",
"lib-esm/*"
],
"scripts": {
"prebuild": "node ./utils/Make",
"build": "yarn build:types && yarn build:sfx && yarn bundle",
"build:types": "tsc",
"build:sfx": "node ./utils/sfx-wasm",
"bundle": "rollup -c",
"lint": "eslint src-ts/**/*.ts",
"prettier": "prettier --config .prettierrc --write .",
"test": "vitest",
"docs:dev": "yarn publish-typedoc && vitepress dev docs",
"docs:build": "yarn publish-typedoc && vitepress build docs",
"publish-typedoc": "typedoc --options typedoc.json",
"publish:patch": "npm version patch",
"publish:minor": "npm version minor",
"publish:major": "npm version major",
"preversion": "yarn install && yarn test",
"version": "yarn build && yarn docs:build && git add -A dist docs types",
"postversion": "echo postversion",
"serve": "npx http-server -o ./lib-wasm "
},
"repository": {
"type": "git",
"url": "git+https://github.com/am2222/webDggrid.git"
},
"keywords": [
"DGGRID",
"DGGS",
"GIS"
],
"maintainers": [
{
"name": "Majid Hojati",
"email": "[email protected]",
"url": "https://github.com/am2222"
}
],
"author": {
"name": "Majid Hojati",
"email": "[email protected]",
"url": "https://github.com/am2222"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/am2222/webDggrid/issues"
},
"homepage": "https://github.com/am2222/webDggrid#readme",
"dependencies": {
"fzstd": "^0.1.0"
},
"devDependencies": {
"@hpcc-js/wasm": "^2.9.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@types/geojson": "^7946.0.14",
"@types/node": "~18",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "~5.44",
"eslint": "^8.0.1",
"eslint-config-prettier": "~8.5",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "~27.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"glob": "^9.3.0",
"http-server": "^14.1.1",
"prettier": "~2.8",
"rimraf": "~3.0",
"rollup": "^3.20.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^4.0.0-next.54",
"typedoc-vitepress-theme": "^1.0.0-next.8",
"typescript": "5.0.2",
"vitepress": "^1.0.1",
"vitest": "^0.29.8",
"vtest": "^1.1.0",
"vue": "^3.2.47"
}
}