-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1009 Bytes
/
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
{
"name": "workhours-weekly",
"version": "0.1.0",
"description": "Weekly Workhours Widget for Scriptable",
"author": {
"email": "[email protected]",
"name": "David Enke"
},
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"scripts": {
"postinstall": "npm run generate:types",
"generate:types": "mkdocs-ts https://docs.scriptable.app/scriptable.json src/scriptable.d.ts",
"test": "jest",
"build": "ts-node-esm --transpileOnly --logError esbuild.config.ts",
"build:watch": "npm run build -- --dev --watch",
"release": "release-it --ci --verbose"
},
"devDependencies": {
"@davidenke/mkdocs-ts": "0.1.19",
"@types/lodash-es": "4.17.6",
"@types/jest": "29.2.3",
"@types/node": "18.11.9",
"dotenv": "16.0.3",
"esbuild": "0.15.15",
"esbuild-plugin-clean": "1.0.1",
"jest": "29.3.1",
"lodash-es": "4.17.21",
"release-it": "15.5.0",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.9.3"
}
}