-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "docs-snippet",
"files": [
"dist"
],
"type": "module",
"version": "1.0.1",
"description": "",
"main": "index.ts",
"module": "index.ts",
"publishConfig": {
"main": "./dist/lib/index.cjs",
"module": "./dist/lib/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/lib/index.mjs",
"require": "./dist/lib/index.cjs"
}
}
},
"scripts": {
"test": "vitest",
"prepack": "node ./.scripts/prepack.js"
},
"pnpm": {
"overrides": {
"typescript": "next"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-syntax-decorators": "^7.17.12",
"@babel/plugin-transform-typescript": "^7.18.4",
"@babel/traverse": "^7.18.5",
"@swc/core": "^1.2.203",
"prettier": "^2.7.1"
},
"devDependencies": {
"@types/babel__core": "^7.1.19",
"@types/babel__traverse": "^7.17.1",
"@types/prettier": "^2.6.3",
"@types/shelljs": "^0.8.11",
"dirfilename": "^1.0.4",
"esno": "^0.16.3",
"rollup": "^2.75.6",
"rollup-plugin-dts": "^4.2.2",
"shelljs": "^0.8.5",
"typescript": "next",
"vite": "^2.9.12",
"vite-dts": "^1.0.4",
"vite-plugin-dts": "^1.2.0",
"vitest": "^0.15.1"
}
}