-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.78 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "vite-plugin-magic-comments",
"version": "0.1.1",
"license": "MIT",
"homepage": "https://github.com/JiangWeixian/vite-plugin-magic-comments#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JiangWeixian/vite-plugin-magic-comments.git"
},
"bugs": {
"url": "https://github.com/JiangWeixian/vite-plugin-magic-comments/issues",
"email": "jiangweixian1994@gmail.com"
},
"author": {
"name": "JW",
"email": "jiangweixian1994@gmail.com",
"url": "https://twitter.com/jiangweixian"
},
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/exports/index.d.ts"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/exports/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build:lib": "rimraf dist && rollup -c --silent",
"build:dts": "tsc -p ./tsconfig.dts.json",
"play": "pnpm --filter=./playground dev",
"build": "run-s build:*",
"dev": "rollup -c -w --silent",
"test": "vitest",
"pretest": "pnpm run build",
"release": "pnpm run build && np --no-cleanup --yolo --no-publish --any-branch",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm run build && pnpm changeset publish",
"ci:snapshot": "pnpm changeset version --snapshot beta",
"ci:prerelease": "pnpm run build && pnpm changeset publish --tag beta",
"prepublishOnly": "publish-police",
"prepare": "husky install",
"lint:fix": "eslint . --fix"
},
"lint-staged": {
"**/**/*.{js,ts,tsx,vue,json}": [
"eslint --fix"
]
},
"engines": {
"node": ">=14"
},
"peerDependencies": {
"vite": "^3"
},
"dependencies": {
"debug": "^4.3.4",
"es-module-lexer": "^1.1.0",
"magic-string": "^0.27.0",
"ufo": "^1.0.1"
},
"devDependencies": {
"@aiou/eslint-config": "^0.6.1",
"@changesets/cli": "^2.25.2",
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/debug": "^4.1.7",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.11.9",
"cz-emoji": "^1.3.1",
"esbuild": "^0.15.16",
"eslint": "^8.28.0",
"esno": "^0.16.3",
"estree-walker": "^3.0.1",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"lodash-es": "^4.17.21",
"np": "7.5.0",
"npm-run-all": "^4.1.5",
"prettier": "2.4.1",
"publish-police": "^0.0.3",
"rimraf": "3.0.2",
"rollup": "3.5.0",
"rollup-plugin-condition-exports": "2.0.0-next.3",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-node-externals": "^5.0.2",
"ts-node": "10.2.1",
"tslib": "2.3.1",
"typescript": "4.4.3",
"vite": "^3.2.4",
"vitest": "^0.25.3"
}
}