mutorjs 1.5.3 → 1.5.4
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/dist/cli.cjs +13 -13
- package/dist/cli.cjs.map +1 -1
- package/dist/index.cjs +9 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/mutor.global.js +9 -9
- package/dist/mutor.global.js.map +1 -1
- package/dist/server.cjs +8 -8
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +8 -8
- package/dist/server.js.map +1 -1
- package/package.json +81 -81
package/package.json
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "mutorjs",
|
|
3
|
-
"version": "1.5.
|
|
4
|
-
"description": "A high-performance engine for secure templating.",
|
|
5
|
-
"homepage": "https://github.com/allAboutJS/Mutor.js#readme",
|
|
6
|
-
"bugs": {
|
|
7
|
-
"url": "https://github.com/allAboutJS/Mutor.js/issues"
|
|
8
|
-
},
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/allAboutJS/Mutor.js.git"
|
|
12
|
-
},
|
|
13
|
-
"license": "ISC",
|
|
14
|
-
"author": "Onah Victor",
|
|
15
|
-
"type": "module",
|
|
16
|
-
"main": "./dist/index.js",
|
|
17
|
-
"module": "./dist/index.js",
|
|
18
|
-
"types": "./dist/index.d.ts",
|
|
19
|
-
"browser": "./dist/mutor.global.js",
|
|
20
|
-
"exports": {
|
|
21
|
-
".": {
|
|
22
|
-
"types": "./dist/index.d.ts",
|
|
23
|
-
"import": "./dist/index.js",
|
|
24
|
-
"require": "./dist/index.cjs",
|
|
25
|
-
"default": "./dist/index.js"
|
|
26
|
-
},
|
|
27
|
-
"./server": {
|
|
28
|
-
"types": "./dist/server.d.ts",
|
|
29
|
-
"import": "./dist/server.js",
|
|
30
|
-
"require": "./dist/server.cjs",
|
|
31
|
-
"default": "./dist/server.js"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"bin": {
|
|
35
|
-
"mutor": "./dist/cli.cjs"
|
|
36
|
-
},
|
|
37
|
-
"files": [
|
|
38
|
-
"dist"
|
|
39
|
-
],
|
|
40
|
-
"scripts": {
|
|
41
|
-
"build": "tsup",
|
|
42
|
-
"prepare": "husky && npm run build",
|
|
43
|
-
"benchmarks": "npm run build && tsx src/__tests__/benchmarks.ts",
|
|
44
|
-
"test": "jest"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@biomejs/biome": "^2.3.11",
|
|
48
|
-
"@types/benchmark": "^2.1.5",
|
|
49
|
-
"@types/ejs": "^3.1.5",
|
|
50
|
-
"@types/handlebars": "^4.1.0",
|
|
51
|
-
"@types/jest": "^30.0.0",
|
|
52
|
-
"@types/node": "^25.5.0",
|
|
53
|
-
"@types/nunjucks": "^3.2.6",
|
|
54
|
-
"benchmark": "^2.1.4",
|
|
55
|
-
"ejs": "^5.0.1",
|
|
56
|
-
"eta": "^4.6.0",
|
|
57
|
-
"handlebars": "^4.7.8",
|
|
58
|
-
"husky": "^9.1.7",
|
|
59
|
-
"jest": "^30.3.0",
|
|
60
|
-
"lint-staged": "^16.2.7",
|
|
61
|
-
"nunjucks": "^3.2.4",
|
|
62
|
-
"ts-jest": "^29.4.9",
|
|
63
|
-
"tsup": "^8.5.1",
|
|
64
|
-
"tsx": "^4.21.0",
|
|
65
|
-
"typescript": "^5.9.3",
|
|
66
|
-
"vitest": "^4.1.6"
|
|
67
|
-
},
|
|
68
|
-
"lint-staged": {
|
|
69
|
-
"*.{js,ts,json}": [
|
|
70
|
-
"biome check --write --no-errors-on-unmatched"
|
|
71
|
-
]
|
|
72
|
-
},
|
|
73
|
-
"dependencies": {},
|
|
74
|
-
"keywords": [
|
|
75
|
-
"Template",
|
|
76
|
-
"Engine",
|
|
77
|
-
"AST",
|
|
78
|
-
"Parser"
|
|
79
|
-
],
|
|
80
|
-
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
81
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "mutorjs",
|
|
3
|
+
"version": "1.5.4",
|
|
4
|
+
"description": "A high-performance engine for secure templating.",
|
|
5
|
+
"homepage": "https://github.com/allAboutJS/Mutor.js#readme",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/allAboutJS/Mutor.js/issues"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/allAboutJS/Mutor.js.git"
|
|
12
|
+
},
|
|
13
|
+
"license": "ISC",
|
|
14
|
+
"author": "Onah Victor",
|
|
15
|
+
"type": "module",
|
|
16
|
+
"main": "./dist/index.js",
|
|
17
|
+
"module": "./dist/index.js",
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"browser": "./dist/mutor.global.js",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"import": "./dist/index.js",
|
|
24
|
+
"require": "./dist/index.cjs",
|
|
25
|
+
"default": "./dist/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./server": {
|
|
28
|
+
"types": "./dist/server.d.ts",
|
|
29
|
+
"import": "./dist/server.js",
|
|
30
|
+
"require": "./dist/server.cjs",
|
|
31
|
+
"default": "./dist/server.js"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"bin": {
|
|
35
|
+
"mutor": "./dist/cli.cjs"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist"
|
|
39
|
+
],
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsup",
|
|
42
|
+
"prepare": "husky && npm run build",
|
|
43
|
+
"benchmarks": "npm run build && tsx src/__tests__/benchmarks.ts",
|
|
44
|
+
"test": "jest"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@biomejs/biome": "^2.3.11",
|
|
48
|
+
"@types/benchmark": "^2.1.5",
|
|
49
|
+
"@types/ejs": "^3.1.5",
|
|
50
|
+
"@types/handlebars": "^4.1.0",
|
|
51
|
+
"@types/jest": "^30.0.0",
|
|
52
|
+
"@types/node": "^25.5.0",
|
|
53
|
+
"@types/nunjucks": "^3.2.6",
|
|
54
|
+
"benchmark": "^2.1.4",
|
|
55
|
+
"ejs": "^5.0.1",
|
|
56
|
+
"eta": "^4.6.0",
|
|
57
|
+
"handlebars": "^4.7.8",
|
|
58
|
+
"husky": "^9.1.7",
|
|
59
|
+
"jest": "^30.3.0",
|
|
60
|
+
"lint-staged": "^16.2.7",
|
|
61
|
+
"nunjucks": "^3.2.4",
|
|
62
|
+
"ts-jest": "^29.4.9",
|
|
63
|
+
"tsup": "^8.5.1",
|
|
64
|
+
"tsx": "^4.21.0",
|
|
65
|
+
"typescript": "^5.9.3",
|
|
66
|
+
"vitest": "^4.1.6"
|
|
67
|
+
},
|
|
68
|
+
"lint-staged": {
|
|
69
|
+
"*.{js,ts,json}": [
|
|
70
|
+
"biome check --write --no-errors-on-unmatched"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
"dependencies": {},
|
|
74
|
+
"keywords": [
|
|
75
|
+
"Template",
|
|
76
|
+
"Engine",
|
|
77
|
+
"AST",
|
|
78
|
+
"Parser"
|
|
79
|
+
],
|
|
80
|
+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
81
|
+
}
|