@rljson/rljson 0.0.1 → 0.0.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 +11 -18
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rljson/rljson",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"packageManager": "pnpm@10.6.2",
|
|
3
|
+
"version": "0.0.2",
|
|
5
4
|
"description": "The RLJSON data format specification",
|
|
6
5
|
"homepage": "https://github.com/rljson/rljson",
|
|
7
6
|
"bugs": "https://github.com/rljson/rljson/issues",
|
|
@@ -20,14 +19,6 @@
|
|
|
20
19
|
"dist"
|
|
21
20
|
],
|
|
22
21
|
"type": "module",
|
|
23
|
-
"scripts": {
|
|
24
|
-
"build": "npx vite build && tsc && cp README* dist && mkdir dist/src && cp src/example.ts dist/src",
|
|
25
|
-
"test": "npx vitest run --coverage && npm run lint",
|
|
26
|
-
"prebuild": "npm run test",
|
|
27
|
-
"prepublishOnly": "npm run build && npm run test",
|
|
28
|
-
"lint": "npx eslint",
|
|
29
|
-
"updateGoldens": "cross-env UPDATE_GOLDENS=true npm test"
|
|
30
|
-
},
|
|
31
22
|
"devDependencies": {
|
|
32
23
|
"@types/node": "^22.13.10",
|
|
33
24
|
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
|
@@ -35,7 +26,7 @@
|
|
|
35
26
|
"@vitest/coverage-v8": "^3.0.8",
|
|
36
27
|
"cross-env": "^7.0.3",
|
|
37
28
|
"eslint": "^9.22.0",
|
|
38
|
-
"eslint-plugin-jsdoc": "^50.6.
|
|
29
|
+
"eslint-plugin-jsdoc": "^50.6.6",
|
|
39
30
|
"eslint-plugin-tsdoc": "^0.4.0",
|
|
40
31
|
"globals": "^16.0.0",
|
|
41
32
|
"jsdoc": "^4.0.4",
|
|
@@ -49,12 +40,14 @@
|
|
|
49
40
|
"vitest-dom": "^0.1.1"
|
|
50
41
|
},
|
|
51
42
|
"peerDependencies": {
|
|
52
|
-
"@rljson/hash": "^0.0.
|
|
53
|
-
"@rljson/json": "^0.0.
|
|
43
|
+
"@rljson/hash": "^0.0.7",
|
|
44
|
+
"@rljson/json": "^0.0.5"
|
|
54
45
|
},
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "npx vite build && tsc && cp README* dist && mkdir dist/src && cp src/example.ts dist/src",
|
|
48
|
+
"test": "npx vitest run --coverage && npm run lint",
|
|
49
|
+
"prebuild": "npm run test",
|
|
50
|
+
"lint": "npx eslint",
|
|
51
|
+
"updateGoldens": "cross-env UPDATE_GOLDENS=true npm test"
|
|
59
52
|
}
|
|
60
|
-
}
|
|
53
|
+
}
|