-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 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
45
46
{
"name": "@uni-aide/core",
"type": "module",
"version": "0.7.11",
"description": "@uni-aide/core",
"author": "hackycy",
"license": "MIT",
"homepage": "https://github.com/hackycy/uni-aide#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hackycy/uni-aide.git"
},
"bugs": "https://github.com/hackycy/uni-aide/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"prepublishOnly": "nr build",
"start": "tsx src/index.ts",
"test": "vitest --reporter=verbose"
},
"dependencies": {
"ast-kit": "^2.2.0",
"comment-json": "^4.4.1",
"magic-string": "catalog:",
"unconfig": "^7.3.3",
"write-file-atomic": "^7.0.0"
},
"devDependencies": {
"@babel/types": "^7.28.4",
"@types/write-file-atomic": "^4.0.3"
}
}