-
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) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.94 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": "ohzi-core",
"version": "13.2.0",
"description": "OHZI Interactive Core Library",
"type": "module",
"source": "src/index.ts",
"module": "build/index.mjs",
"types": "types/index.d.ts",
"sideEffects": false,
"files": [
"build",
"LICENSE",
"src",
"types",
"package.json"
],
"scripts": {
"preinstall": "yarn config-hooks",
"start": "rollup -w -c",
"config-hooks": "git config core.hooksPath git_hooks",
"build": "rollup -c",
"create-tag": "node tasks/app/create_tag.mjs",
"fix-syntax": "npx eslint src --fix || echo 'Done.'",
"generate-types": "npx -p typescript tsc",
"upload": "yarn build && npm publish && yarn create-tag",
"create-view": "node ./tasks/create_view/create_view.mjs",
"create-scene": "node ./tasks/create_scene/create_scene.mjs",
"create-component": "node ./tasks/create_component/create_component.mjs",
"create-transition": "node ./tasks/create_transition/create_transition.mjs"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ohzinteractive/core.git"
},
"keywords": [
"ohzi",
"core"
],
"author": "OHZI Interactive Studio",
"license": "MIT",
"bugs": {
"url": "https://github.com/ohzinteractive/core/issues"
},
"homepage": "https://github.com/ohzinteractive/core",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"three": "0.183.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.0.3",
"@types/three": "0.182.0",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"rollup": "^2.44.0",
"rollup-plugin-glslify": "^1.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.18.2"
}
}