-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
36 lines (36 loc) · 1.09 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
{
"name": "@rainplus/pplayer",
"version": "0.0.1-alpha",
"description": "Penguin Player",
"main": "index.js",
"repository": "https://github.com/RainPlus-Team/PenguinPlayer",
"author": "RainPlus",
"license": "MIT",
"private": false,
"scripts": {
"build:dev": "yarn rollup -c",
"build:prod": "yarn cross-env NODE_ENV=production yarn run build:dev",
"watch:dev": "yarn rollup -c -w",
"demo:build:prod": "yarn --cwd demo build",
"demo:watch:dev": "yarn --cwd demo dev",
"vercel-build": "yarn run build:prod && yarn run "
},
"dependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"cross-env": "^7.0.3",
"rollup": "^2.73.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.6.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-plugin-svelte3": "^4.0.0",
"svelte": "^3.53.1"
}
}