@anvil-works/anvil-cli 0.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ /*! chokidar - MIT License (c) 2012 Paul Miller (paulmillr.com) */
2
+
3
+ /*! js-yaml 4.1.1 https://github.com/nodeca/js-yaml @license MIT */
package/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "@anvil-works/anvil-cli",
3
+ "version": "0.3.7",
4
+ "description": "CLI tool for developing Anvil apps locally",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "bin": {
8
+ "anvil": "./dist/cli.js"
9
+ },
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "keywords": [
17
+ "anvil",
18
+ "sync",
19
+ "cli",
20
+ "git",
21
+ "web-app",
22
+ "development"
23
+ ],
24
+ "author": "Anvil Works",
25
+ "license": "MIT",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/anvil-works/anvil-cli.git"
29
+ },
30
+ "bugs": {
31
+ "url": "https://github.com/anvil-works/anvil-cli/issues"
32
+ },
33
+ "homepage": "https://github.com/anvil-works/anvil-cli#readme",
34
+ "devDependencies": {
35
+ "@rslib/core": "^0.17.1",
36
+ "@rstest/core": "^0.6.2",
37
+ "@types/mime-types": "^3.0.1",
38
+ "@types/node": "^24.10.0",
39
+ "@types/pg": "^8.15.6",
40
+ "@types/semver": "^7.7.1",
41
+ "@types/tough-cookie": "^4.0.5",
42
+ "axios-cookiejar-support": "^6.0.4",
43
+ "chai": "^6.2.0",
44
+ "conf": "^15.0.2",
45
+ "nodemon": "^3.1.10",
46
+ "pg": "^8.16.3",
47
+ "simple-git": "^3.30.0",
48
+ "tough-cookie": "^6.0.0",
49
+ "typescript": "^5.9.3"
50
+ },
51
+ "dependencies": {
52
+ "@types/inquirer": "^9.0.9",
53
+ "@types/js-yaml": "^4.0.9",
54
+ "@types/node-forge": "^1.3.14",
55
+ "@types/ws": "^8.18.1",
56
+ "axios": "^1.13.2",
57
+ "chalk": "^5.6.2",
58
+ "chokidar": "^4.0.3",
59
+ "commander": "^14.0.2",
60
+ "inquirer": "^12.10.0",
61
+ "js-yaml": "^4.1.0",
62
+ "mime-types": "^3.0.1",
63
+ "node-forge": "^1.3.1",
64
+ "open": "^10.1.0",
65
+ "ora": "^9.0.0",
66
+ "semver": "^7.7.3",
67
+ "valibot": "^1.1.0",
68
+ "ws": "^8.18.3",
69
+ "yaml": "^2.8.1"
70
+ },
71
+ "scripts": {
72
+ "build": "rslib build",
73
+ "dev": "rslib --env-mode development build --watch",
74
+ "cli": "node dist/cli.js",
75
+ "test": "rstest",
76
+ "test:watch": "rstest --watch"
77
+ }
78
+ }