-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.45 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.45 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
{
"name": "path.ux",
"version": "0.2.0",
"description": "Html5 based UI library with blender-rna-style data binding",
"main": "scripts/pathux.ts",
"index": "scripts/pathux.ts",
"browser": "true",
"scripts": {
"build": "node buildtools/esbuild.mjs",
"watch": "node buildtools/esbuild.mjs --watch",
"typecheck": "npx tsgo --noEmit",
"emitTypes": "npx tsgo --project tsconfigDecl.json",
"buildPackage": "bash buildtools/build_package_new.sh",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:debug": "node --inspect-brk --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand",
"format": "node node_modules/@pathtx/prettier/bin/prettier.cjs --log-level warn --cache --write \"scripts/**/*.{ts,js}\"",
"format:check": "node node_modules/@pathtx/prettier/bin/prettier.cjs --log-level warn --cache --check \"scripts/**/*.{ts,js}\"",
"build-docs": "bash build_docs.sh",
"render-icons": "bash render_icons.sh",
"markdown-toc": "bash run_markdown_toc.sh",
"serv": "node serv.js",
"playwright": "npx playwright test",
"eslint": "node node_modules/eslint/bin/eslint.js --config eslint.config.js --cache --cache-location .eslintcache",
"eslint:clean-cache": "rm .eslintcache"
},
"directories": {
"doc": "docs"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@pathtx/prettier": "3.3.0-dev",
"@playwright/test": "^1.59.1",
"@swc/core": "^1.15.26",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@types/parse5": "^7.0.0",
"@typescript/native-preview": "7.0.0-dev.20260406.1",
"diff": "^5.2.2",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"jest": "^30.3.0",
"jest-config": "^30.3.0",
"markdown-toc": "^1.2.0",
"nstructjs": "^0.8.4",
"parse5": "6.0.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"typescript-language-server": "^5.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joeedh/path.ux.git"
},
"author": "Joseph Eagar",
"license": "MIT",
"bugs": {
"url": "https://github.com/joeedh/path.ux/issues"
},
"homepage": "https://github.com/joeedh/path.ux#readme",
"packageManager": "pnpm@10.30.3"
}