-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.9 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
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
{
"name": "webdggrid",
"version": "1.9.0",
"description": "Wasm package for DGGRID ",
"packageManager": "yarn@4.10.3",
"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": {
"build:wasm": "node ./utils/Make",
"build": "yarn build:wasm && yarn build:types && yarn build:sfx && yarn bundle",
"test:dist": "node utils/smoke-test.mjs",
"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",
"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": "hoja4090@mylaureir.ca",
"url": "https://github.com/am2222"
}
],
"author": {
"name": "Majid Hojati",
"email": "hoja4090@mylaureir.ca",
"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.1"
},
"devDependencies": {
"@hpcc-js/wasm": "^2.33.2",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@types/geojson": "^7946.0.16",
"@types/node": "~22",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "~7.18",
"eslint": "^8.57.1",
"http-server": "^14.1.1",
"prettier": "~3.8",
"rollup": "^4.60.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"typedoc": "^0.28.18",
"typedoc-plugin-markdown": "^4.11.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "~5.7",
"vitepress": "^1.6.4",
"vitest": "^4.1.2",
"vue": "^3.5.31"
}
}