-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "@markandre13/usd.js",
"version": "0.0.7",
"description": "universal scene description for typescript",
"author": "mhopf@mark13.org",
"license": "AGPL-3.0",
"type": "module",
"files": [
"README.md",
"LICENSE",
"package.json",
"dist"
],
"exports": {
"./*": {
"import": "./dist/*.js",
"types": "./dist/*.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"dist/*.d.ts"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/markandre13/usd.js.git"
},
"scripts": {
"build": "tsgo",
"dev:build": "tsgo -w",
"test": "bun --watch node_modules/mocha/bin/mocha.js 'spec/**/*.spec.ts'"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.1",
"@typescript/native-preview": "^7.0.0-dev.20260403.1",
"chai": "^6.2.2",
"mocha": "^11.7.5"
}
}