-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"name": "mindsphere-auth-helper",
"version": "2.0.0",
"description": "Siemens Insights Hub Authorization Helper (chrome extension). Siemens Insights Hub was previously known as MindSphere.",
"main": "index.html",
"scripts": {
"prepare": "rimraf dist/ && tsc --outdir dist/ && copyfiles -u 1 \"assets/**/*\" dist/assets/ && copyfiles -u 1 \"vendor/**/*\" dist/vendor/ && copyfiles manifest.json dist/ && copyfiles index.html dist/",
"pre-publish": "cross-var \"npm run prepare && rimraf *.zip && 7zz a -tzip $npm_package_name-$npm_package_version.zip -w dist/.\"",
"ts:watch": "tsc -w"
},
"files": [
"./dist"
],
"keywords": [
"Siemens",
"Insights Hub",
"Siemens Xcelerator",
"MindSphere",
"Authorization",
"Helper",
"Chrome",
"Extension"
],
"author": "@sn0wcat",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.254",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"cross-var": "^1.1.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}