-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
42
43
44
45
46
47
{
"name": "spelljack",
"version": "1.0.0",
"description": "Comfortably check multiple wordpress articles for spelling errors and manage those errors in one place",
"scripts": {
"server": "deno run --allow-net --allow-env --allow-read ./server/main.ts",
"server:dev": "deno run --watch --allow-net --allow-env --allow-read ./server/main.ts",
"dev": "rm -rf dist/*.* && npx parcel src/index.html",
"dist": "rm -rf dist/*.* && npx parcel build src/index.html --public-url ./",
"docker:build": "podman build --no-cache -t ideadapt/spelljack:1.0.0 .",
"docker:push": "podman push ideadapt/spelljack:1.0.0",
"test": "npx mocha test/*.mjs",
"test:watch": "nodemon --watch test --watch src --exec mocha test/*.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ideadapt/spelljack.git"
},
"engines": {
"node": ">=19",
"deno": ">=2"
},
"browserslist": [
"> 30%",
"last 2 versions",
"not dead"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ideadapt/spelljack/issues"
},
"homepage": "https://github.com/ideadapt/spelljack#readme",
"devDependencies": {
"buffer": "^6.0.3",
"parcel": "^2.13.3",
"postcss": "8.4.31",
"process": "^0.11.10",
"svgo": "^3.3.2",
"tailwindcss": "^3.1.8"
},
"dependencies": {
"alpinejs": "^3.10.3",
"mocha": "^10.0.0",
"nodemon": "^2.0.20"
}
}