-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.99 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.99 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
{
"name": "americad",
"version": "1.0.0",
"description": "Ameri-CAD: Professional parametric CAD combining Fusion 360's precision with Blender's architecture",
"main": "app.js",
"type": "module",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"test": "npx playwright test",
"test:coverage": "c8 --reporter=text --reporter=html npx playwright test",
"coverage:report": "c8 report --reporter=text-lcov > coverage.lcov",
"test:count": "node tests/run-tests.mjs",
"test:browser": "open tests/runner.html || xdg-open tests/runner.html",
"test:sab": "open http://localhost:8080/tests/sab-runner.html || xdg-open http://localhost:8080/tests/sab-runner.html",
"serve": "python3 -m http.server 8080",
"serve:sab": "node serve-coop.js",
"lint": "eslint src/ app.js --ext .js,.mjs",
"lint:fix": "eslint src/ app.js --ext .js,.mjs --fix",
"format": "prettier --write 'src/**/*.js' 'app.js' '*.json' '*.md'",
"format:check": "prettier --check 'src/**/*.js' 'app.js'",
"prepare": "husky",
"docs:screenshots": "node scripts/capture-screenshots.js",
"docs:serve": "npx serve docs -p 3000",
"dashboard": "node scripts/dev-dashboard.js",
"changelog": "node scripts/generate-changelog.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sean-Kenneth-Doherty/americad.git"
},
"keywords": [
"cad",
"parametric",
"3d",
"modeling",
"opencascade",
"threejs"
],
"author": "Sean Doherty",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sean-Kenneth-Doherty/americad/issues"
},
"homepage": "https://github.com/Sean-Kenneth-Doherty/americad#readme",
"dependencies": {
"opencascade.js": "^1.1.1"
},
"devDependencies": {
"@playwright/test": "^1.58.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1"
}
}