-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 970 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 970 Bytes
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
{
"name": "usagi-ts",
"version": "1.0.5",
"private": false,
"workspaces": ["packages/*"],
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "tsup ./src/index.ts --format esm --dts --sourcemap --clean",
"build:core": "bun run --filter '@usagi-ts/core' build",
"build:cli": "bun run --filter '@usagi-ts/cli' build",
"test": "bun run --filter '*' test",
"test:core": "bun --filter '@usagi-ts/core' test",
"test:cli": "bun run --filter '@usagi-ts/cli' test",
"generate-types": "bun run scripts/generate-types.ts",
"usagi": "bun run ./bin/usagi-ts.js"
},
"devDependencies": {
"@types/bun": "1.2.13",
"json-schema-to-typescript": "15.0.4",
"typescript": "5.8.3",
"tsup": "8.4.0"
}
}