-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 814 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 814 Bytes
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
{
"name": "techno-sutra-ar",
"version": "1.0.0",
"description": "Immersive AR experience exploring the 56 chapters of the Avatamsaka Sutra",
"type": "module",
"scripts": {
"dev": "python3 -m http.server 8000",
"test": "node --test tests/**/*.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "python3 verify_static_imports.py --ignore 'legacy/**' && echo 'Static build complete'",
"serve": "python3 https_server.py"
},
"repository": {
"type": "git",
"url": "https://github.com/technosutra21/technosutra.git"
},
"author": "Techno Sutra Team",
"license": "MIT",
"devDependencies": {
"eslint": "^8.56.0"
},
"keywords": [
"ar",
"augmented-reality",
"buddhism",
"avatamsaka",
"3d-models",
"pwa",
"webxr"
]
}