-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.22 KB
/
package.json
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
{
"name": "thimbleberry",
"version": "0.2.9",
"description": "",
"type": "module",
"scripts": {
"prepublish": "rimraf dist && pnpm run build && pnpm run build:shaders && pnpm run build:types",
"build": "esbuild src/shader-util/index.ts --bundle --format=esm --packages=external --loader:.wgsl=text --sourcemap --outfile=dist/thimbleberry.js",
"build:shaders": "esbuild src/shaders/index.ts --bundle --format=esm --packages=external --loader:.wgsl=text --sourcemap --outfile=dist/shaders.js",
"build:types": "tsc --project tsconfig.build.json",
"demo": "cd image-demo && pnpm demo",
"test": "vitest",
"cypress-component": "cypress open --component --browser chrome:canary",
"organize": "organize-imports-cli tsconfig.json",
"format": "prettier-eslint \"src/**/*.ts\" --write",
"lint": "eslint ."
},
"repository": "github:mighdoll/thimbleberry",
"main": "./dist/thimbleberry.js",
"module": "./dist/thimbleberry.js",
"exports": {
".": {
"module": "./dist/thimbleberry.js",
"import": "./dist/thimbleberry.js",
"types": "./dist/thimbleberry.d.ts"
},
"./shaders": {
"module": "./dist/shaders.js",
"import": "./dist/shaders.js",
"types": "./dist/shaders/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"keywords": [
"webgpu",
"reactive",
"debug"
],
"author": "",
"license": "ISC",
"dependencies": {
"@petamoriken/float16": "^3.8.0",
"@reactively/core": "^0.0.8",
"@reactively/decorate": "0.0.4",
"berry-pretty": "^0.0.4",
"fast-deep-equal": "^3.1.3"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@webgpu/types": "^0.1.32",
"cypress": "^12.13.0",
"esbuild": "^0.17.19",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"organize-imports-cli": "^0.10.0",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"rimraf": "^5.0.1",
"typescript": "^5.0.4",
"vite": "^4.3.8",
"vite-plugin-tree-shakable-decorators": "^0.1.1",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.31.1",
"wrangler": "^3.0.1"
}
}