-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.68 KB
/
package.json
File metadata and controls
39 lines (39 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
{
"name": "glypht",
"workspaces": [
"glypht-core",
"glypht-web",
"glypht-bundler-utils",
"glypht-cli"
],
"type": "module",
"scripts": {
"build": "cd glypht-core && npm run build && cd ../glypht-bundler-utils && npm run build && cd ../glypht-web && npm run build",
"site:build": "cd glypht-core && npm run build && cd ../glypht-bundler-utils && npm run build && cd ../glypht-web && npm run site:build",
"typecheck": "tsc --build tsconfig.check.json --noEmit",
"lint": "eslint",
"test": "cd glypht-core && npm run test && cd ../glypht-bundler-utils && npm run test",
"gen-feature-tag-info": "jiti scripts/gen-feature-tag-info.ts",
"gen-subset-ranges": "jiti scripts/gen-subset-ranges.ts",
"gen-google-fonts-list": "rollup -c scripts/rollup.config.js && node scripts/dist/gen-google-fonts-list.js",
"build-wasm": "docker build -t glypht_c_libs ./c-libs-wrapper && docker run --rm -v ./c-libs-wrapper:/src -u $(id -u):$(id -g) -it glypht_c_libs /bin/bash -c 'cd /src && ./build.sh'"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@glypht/web-worker": "^1.7.0",
"@rollup/plugin-typescript": "^12.3.0",
"@smol-range/compress": "^0.1.0",
"@stylistic/eslint-plugin": "^5.2.2",
"eslint": "^9.32.0",
"globals": "^17.0.0",
"jiti": "^2.5.1",
"pbtxtjs": "https://github.com/valadaptive/pbtxtjs.git",
"protobufjs": "^8.0.0",
"rollup": "^4.46.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vite-node": "^5.2.0",
"vitest": "^4.0.16"
}
}