create-kdna-web-app 0.1.0 → 0.1.2
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-kdna-web-app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Scaffold a KDNA-integrated web application with Next.js App Router, Next.js Pages Router, or Express templates.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"bin": {
|
|
@@ -17,8 +17,10 @@
|
|
|
17
17
|
"SECURITY.md"
|
|
18
18
|
],
|
|
19
19
|
"scripts": {
|
|
20
|
-
"ci": "npm test && npm pack --dry-run --json",
|
|
21
|
-
"test": "node --test tests
|
|
20
|
+
"ci": "npm test && npm run lint && npm pack --dry-run --json",
|
|
21
|
+
"test": "node --test tests/scaffold.test.js",
|
|
22
|
+
"lint": "node scripts/lint.js",
|
|
23
|
+
"prepublishOnly": "npm run ci"
|
|
22
24
|
},
|
|
23
25
|
"engines": {
|
|
24
26
|
"node": ">=18"
|
|
@@ -27,7 +29,7 @@
|
|
|
27
29
|
"license": "Apache-2.0",
|
|
28
30
|
"repository": {
|
|
29
31
|
"type": "git",
|
|
30
|
-
"url": "https://github.com/aikdna/create-kdna-web-app.git"
|
|
32
|
+
"url": "git+https://github.com/aikdna/create-kdna-web-app.git"
|
|
31
33
|
},
|
|
32
34
|
"bugs": {
|
|
33
35
|
"url": "https://github.com/aikdna/create-kdna-web-app/issues"
|
|
@@ -9,11 +9,22 @@
|
|
|
9
9
|
"test": "node scripts/smoke.mjs"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@aikdna/kdna-core": "^0.15.
|
|
13
|
-
"@aikdna/kdna-react": "^0.1.
|
|
14
|
-
"@aikdna/kdna-web-server": "^0.1.
|
|
12
|
+
"@aikdna/kdna-core": "^0.15.11",
|
|
13
|
+
"@aikdna/kdna-react": "^0.1.1",
|
|
14
|
+
"@aikdna/kdna-web-server": "^0.1.1",
|
|
15
15
|
"next": "^16.2.10",
|
|
16
16
|
"react": "^19.2.7",
|
|
17
17
|
"react-dom": "^19.2.7"
|
|
18
|
+
},
|
|
19
|
+
"overrides": {
|
|
20
|
+
"postcss": "^8.5.10"
|
|
21
|
+
},
|
|
22
|
+
"pnpm": {
|
|
23
|
+
"overrides": {
|
|
24
|
+
"postcss": "^8.5.10"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"resolutions": {
|
|
28
|
+
"postcss": "^8.5.10"
|
|
18
29
|
}
|
|
19
30
|
}
|
|
@@ -9,11 +9,22 @@
|
|
|
9
9
|
"test": "node scripts/smoke.mjs"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@aikdna/kdna-core": "^0.15.
|
|
13
|
-
"@aikdna/kdna-react": "^0.1.
|
|
14
|
-
"@aikdna/kdna-web-server": "^0.1.
|
|
12
|
+
"@aikdna/kdna-core": "^0.15.11",
|
|
13
|
+
"@aikdna/kdna-react": "^0.1.1",
|
|
14
|
+
"@aikdna/kdna-web-server": "^0.1.1",
|
|
15
15
|
"next": "^16.2.10",
|
|
16
16
|
"react": "^19.2.7",
|
|
17
17
|
"react-dom": "^19.2.7"
|
|
18
|
+
},
|
|
19
|
+
"overrides": {
|
|
20
|
+
"postcss": "^8.5.10"
|
|
21
|
+
},
|
|
22
|
+
"pnpm": {
|
|
23
|
+
"overrides": {
|
|
24
|
+
"postcss": "^8.5.10"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"resolutions": {
|
|
28
|
+
"postcss": "^8.5.10"
|
|
18
29
|
}
|
|
19
30
|
}
|