-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.33 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.33 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@idetik/core",
"version": "0.1.0",
"type": "module",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/chanzuckerberg/idetik.git"
},
"description": "A layer-based visualization abstraction",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./dist/*.js.map": "./dist/*.js.map",
"./dist/*.cjs.map": "./dist/*.cjs.map",
"./dist/*.d.ts.map": "./dist/*.d.ts.map"
},
"files": [
"dist"
],
"directories": {
"test": "test"
},
"engines": {
"node": ">=20.19.0",
"npm": ">=11.3.0"
},
"scripts": {
"dev": "vite",
"compile": "tsc",
"build": "vite build && tsc && rollup -c rollup.config.js",
"build:examples": "vite build --mode examples",
"examples": "vite",
"test": "vitest",
"test-with-coverage": "vitest run --coverage",
"format": "prettier --write './**/*.{ts,tsx,html,json}'",
"format-check": "prettier --check './**/*.{ts,tsx,html,json}'",
"lint": "eslint .",
"pub": "npm run build; npm publish --access=public"
},
"dependencies": {
"gl-matrix": "^3.4.3",
"zarrita": "^0.7.1",
"webgpu-utils": "^2.1.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^14.1.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^24.3.1",
"@types/webgl2": "^0.0.11",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitest/browser": "^3.0.9",
"@vitest/coverage-istanbul": "^3.0.9",
"@webgpu/types": "^0.1.69",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"jsdom": "^24.1.1",
"json-schema-to-zod": "^2.6.1",
"lil-gui": "^0.20.0",
"playwright": "1.56.1",
"prettier": "^3.3.2",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.1.1",
"semantic-release": "^25.0.2",
"tslib": "^2.8.1",
"typescript": "^5.2.2",
"typescript-eslint": "^8.1.0",
"vite": "^6.4.2",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-glsl": "^1.3.0",
"vitest": "^3.0.9"
},
"author": "",
"license": "MIT",
"keywords": [
"idetik"
]
}