-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "relic",
"version": "0.0.0",
"private": true,
"description": "",
"type": "module",
"repository": "https://github.com/Lzzzs/relic.git",
"bugs": "https://github.com/Lzzzs/relic/issues",
"homepage": "https://github.com/Lzzzs/relic#readme",
"author": "lzzzs",
"license": "MIT",
"scripts": {
"build": "pnpm -r build",
"build:core": "pnpm --filter core build",
"build:player": "pnpm --filter player build",
"dev:core": "pnpm --filter core dev",
"dev:player": "pnpm --filter player dev",
"prepare": "husky",
"test": "node -v",
"publish": "changeset version && changeset publish"
},
"files": [
"dist"
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"husky": "^9.1.7",
"tsdown": "^0.16.4",
"typescript": "^5.9.3"
}
}