-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 804 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 804 Bytes
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
{
"name": "@endorphinjs/vite-plugin",
"version": "1.0.3",
"description": "Vite plugin for compiling EndorphinJS components",
"main": "./out/index.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -wc",
"prepare": "npm run build"
},
"keywords": [],
"author": "Sergey Chikuyonok <serge.che@gmail.com>",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@types/node": "^16.9.1",
"rollup": "^2.78.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@endorphinjs/postcss-plugin": "^1.1.2",
"@rollup/pluginutils": "^4.2.1"
},
"peerDependencies": {
"endorphin": "*",
"source-map": "^0.7.3",
"vite": "^3.0.9"
}
}