-
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.66 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
{
"name": "tinyest",
"version": "0.3.2",
"description": "A compact, fast, and embeddable JavaScript AST for transpilation.",
"keywords": [
"ast",
"javascript"
],
"homepage": "https://docs.swmansion.com/TypeGPU",
"bugs": {
"url": "https://github.com/software-mansion/TypeGPU/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/software-mansion/TypeGPU.git",
"directory": "packages/tinyest"
},
"type": "module",
"sideEffects": false,
"exports": "./src/index.ts",
"publishConfig": {
"access": "public",
"directory": "dist",
"exports": {
"./package.json": "./package.json",
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./*": {
"require": {
"types": "./dist/*.d.cts",
"default": "./dist/*.cjs"
},
"import": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
}
},
"linkDirectory": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"scripts": {
"build": "tsdown",
"prepublishOnly": "tgpu-dev-cli prepack"
},
"devDependencies": {
"@typegpu/tgpu-dev-cli": "workspace:*",
"tsdown": "catalog:build",
"typescript": "catalog:types"
},
"engines": {
"node": ">=12.20.0"
},
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67"
}