-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 871 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 871 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
{
"name": "@teamyapp/ext",
"private": false,
"version": "0.0.23",
"main": "main.js",
"module": "main.es.js",
"typings": "main.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"release:base": "yarn build && cd dist && yarn publish --access public --no-git-checks",
"release:github": "yarn release:base --registry https://npm.pkg.github.com",
"release:npm": "yarn release:base --registry https://registry.npmjs.org",
"release": "yarn release:github && yarn release:npm"
},
"devDependencies": {
"@types/node": "^18.6.4",
"rollup": "^2.77.2",
"rollup-plugin-typescript2": "^0.32.1",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vite-plugin-dts": "^3.7.1",
"vite-plugin-static-copy": "^0.7.0"
},
"author": "Teamy",
"license": "ISC",
"description": ""
}