-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1018 Bytes
/
package.json
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": "@ryanke/venera",
"version": "1.1.0",
"description": "Another config loader.",
"repository": "https://github.com/sylv/venera.git",
"author": "Ryan <[email protected]>",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"scripts": {
"test": "vitest run",
"build": "tsc --noEmit && tsup",
"prepack": "pnpm run build"
},
"devDependencies": {
"@atlasbot/configs": "^10.5.15",
"@types/dedent": "^0.7.0",
"@types/flat": "^5.0.2",
"@types/minimist": "^1.2.2",
"@types/node": "^20.10.6",
"change-case": "^5.3.0",
"dedent": "^1.5.1",
"flat": "^6.0.1",
"memfs": "^4.6.0",
"merge": "^2.1.1",
"minimist": "^1.2.6",
"strip-json-comments": "^5.0.1",
"toml": "^3.0.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.1.3",
"yaml": "^2.1.1"
}
}