@arikajs/view 0.0.8 → 0.10.0
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 +11 -12
package/package.json
CHANGED
|
@@ -1,19 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arikajs/view",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Server-side rendering and template engine for the ArikaJS framework.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"build": "tsc -p tsconfig.json",
|
|
10
|
-
"build:tests": "tsc -p tsconfig.test.json",
|
|
11
|
-
"clean": "rm -rf dist",
|
|
12
|
-
"prepare": "echo skip",
|
|
13
|
-
"test": "npm run build && npm run build:tests && node scripts/fix-test-imports.js && node --test 'dist/tests/**/*.test.js'",
|
|
14
|
-
"test:watch": "npm run build && npm run build:tests && node --test --watch 'dist/tests/**/*.test.js'",
|
|
15
|
-
"dev": "tsc -p tsconfig.json --watch"
|
|
16
|
-
},
|
|
17
8
|
"files": [
|
|
18
9
|
"dist"
|
|
19
10
|
],
|
|
@@ -43,5 +34,13 @@
|
|
|
43
34
|
"@types/node": "^20.11.24",
|
|
44
35
|
"typescript": "^5.3.3"
|
|
45
36
|
},
|
|
46
|
-
"author": "Prakash Tank"
|
|
47
|
-
|
|
37
|
+
"author": "Prakash Tank",
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "tsc -p tsconfig.json",
|
|
40
|
+
"build:tests": "tsc -p tsconfig.test.json",
|
|
41
|
+
"clean": "rm -rf dist",
|
|
42
|
+
"test": "npm run build && npm run build:tests && node scripts/fix-test-imports.js && node --test 'dist/tests/**/*.test.js'",
|
|
43
|
+
"test:watch": "npm run build && npm run build:tests && node --test --watch 'dist/tests/**/*.test.js'",
|
|
44
|
+
"dev": "tsc -p tsconfig.json --watch"
|
|
45
|
+
}
|
|
46
|
+
}
|