-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.08 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
{
"name": "@caiquecamargo/vite-plugin-netlify-cms",
"type": "module",
"version": "0.0.18",
"author": "Caique de Camargo",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/caiquecamargo/vite-plugin-netlify-cms.git"
},
"keywords": [],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev:watch": "tsup --watch",
"dev": "tsup",
"package": "pnpm build",
"prepublishOnly": "pnpm package",
"pub": "pnpm publish"
},
"peerDependencies": {
"vite": "^4.0.0 || ^5.0.0"
},
"dependencies": {
"yaml": "^2.3.4"
},
"devDependencies": {
"@antfu/eslint-config": "^2.12.1",
"@types/node": "^20.10.5",
"eslint": "^8.57.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}