-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.56 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@shul/root",
"private": true,
"version": "1.0.0",
"description": "Synagogue Software",
"type": "module",
"main": "index.js",
"author": "Benny Powers <web@bennypowers.com>",
"license": "GPL-3.0",
"scripts": {
"test": "echo 'no tests yet'",
"start": "wireit",
"publish": "wireit",
"version:patch": "wireit",
"pages": "wireit",
"build": "wireit"
},
"keywords": [
"shul",
"synagogue",
"jewish"
],
"wireit": {
"start": {
"command": "wds --watch",
"service": true,
"dependencies": [
"watch"
]
},
"watch": {
"command": "tspc -w",
"service": true
},
"version:patch": {
"command": "npm version patch -ws && git add . && git cim 'chore: versions'"
},
"build": {
"command": "tspc"
},
"pages": {
"command": "./scripts/pages.sh",
"dependencies": [
"build"
]
},
"publish": {
"command": "npm publish -ws",
"dependencies": [
"build"
]
}
},
"workspaces": [
"elements"
],
"devDependencies": {
"@hebcal/core": "^5.4.11",
"@parse5/tools": "^0.5.0",
"@pwrs/eslint-config": "^0.0.26",
"@web/dev-server": "^0.4.6",
"@web/dev-server-esbuild": "^1.0.2",
"@web/dev-server-import-maps": "^0.2.1",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"parse5": "^7.1.2",
"temporal-polyfill": "^0.2.5",
"ts-patch": "^3.2.1",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"typescript-transform-lit-css": "^2.0.0",
"wireit": "^0.14.8"
}
}