-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
37
38
39
40
41
{
"name": "mutex.uno",
"private": true,
"description": "A free API service for acquiring mutexes.",
"scripts": {
"prettier": "npx prettier --ignore-unknown --ignore-path=.gitignore .",
"lint:check": "npm run prettier -- --check",
"lint:fix": "npm run prettier -- --write",
"deploy:worker": "node --loader tsm scripts/deploy-worker.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GregBrimble/mutex.uno.git"
},
"author": {
"name": "Greg Brimble",
"email": "[email protected]",
"url": "https://gregbrimble.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/GregBrimble/mutex.uno/issues"
},
"homepage": "https://mutex.uno/",
"dependencies": {
"dotenv": "^16.0.3",
"shellac": "^0.7.3",
"tsm": "^2.3.0",
"wrangler": "^2.12.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230307.0",
"@types/node": "^18.15.0",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"typescript": "^4.9.5"
},
"volta": {
"node": "16.19.1"
}
}