kei-lisp 2.0.0 → 2.1.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/README.md +30 -14
- package/dist/cli.cjs +2442 -3020
- package/dist/cli.d.cts +1 -0
- package/dist/index.cjs +2441 -2899
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +402 -328
- package/dist/index.d.ts +402 -328
- package/dist/index.js +2412 -2890
- package/dist/index.js.map +1 -1
- package/package.json +27 -30
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kei-lisp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "A Lisp interpreter implemented in TypeScript",
|
|
5
5
|
"author": "Keisuke Ikeda",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,52 +42,49 @@
|
|
|
42
42
|
"files": [
|
|
43
43
|
"dist/"
|
|
44
44
|
],
|
|
45
|
-
"scripts": {
|
|
46
|
-
"prepare": "pnpm build",
|
|
47
|
-
"prepublishOnly": "pnpm check && pnpm test",
|
|
48
|
-
"build": "tsup",
|
|
49
|
-
"start": "node dist/cli.cjs",
|
|
50
|
-
"test": "vitest run",
|
|
51
|
-
"test:watch": "vitest",
|
|
52
|
-
"doc": "typedoc",
|
|
53
|
-
"check": "run-s check:*",
|
|
54
|
-
"check:format": "prettier \"./src/**/*.ts\" \"./examples/**/*.ts\" --check",
|
|
55
|
-
"check:format-config": "prettier \"./*.{js,mjs,json,md}\" \"./docs/**/*.md\" \"./.github/**/*.yml\" \"./configs/**/*.mjs\" --check",
|
|
56
|
-
"check:lint": "eslint \"./src/**/*.ts\" \"./examples/**/*.ts\"",
|
|
57
|
-
"check:lint-config": "eslint ./*.{js,mjs} \"./configs/**/*.mjs\"",
|
|
58
|
-
"check:spell": "cspell \"./src/**/*.ts\" \"./examples/**/*.ts\"",
|
|
59
|
-
"check:spell-config": "cspell \"./*.{js,mjs,json,md}\" \"./docs/**/*.md\" \"./.github/**/*.yml\" \"./configs/**/*.mjs\"",
|
|
60
|
-
"fix": "run-s fix:*",
|
|
61
|
-
"fix:format": "prettier \"./src/**/*.ts\" \"./examples/**/*.ts\" --write",
|
|
62
|
-
"fix:format-config": "prettier \"./*.{js,mjs,json,md}\" \"./docs/**/*.md\" \"./.github/**/*.yml\" \"./configs/**/*.mjs\" --write",
|
|
63
|
-
"fix:lint": "eslint \"./src/**/*.ts\" \"./examples/**/*.ts\" --fix",
|
|
64
|
-
"fix:lint-config": "eslint ./*.{js,mjs} \"./configs/**/*.mjs\" --fix"
|
|
65
|
-
},
|
|
66
45
|
"devDependencies": {
|
|
67
46
|
"@eslint/js": "^10.0.1",
|
|
68
47
|
"@types/node": "^25.6.0",
|
|
69
|
-
"@vitest/eslint-plugin": "^1.6.
|
|
70
|
-
"cspell": "^
|
|
48
|
+
"@vitest/eslint-plugin": "^1.6.17",
|
|
49
|
+
"cspell": "^10.0.0",
|
|
71
50
|
"eslint": "^10.3.0",
|
|
72
51
|
"eslint-config-prettier": "^10.1.8",
|
|
73
52
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
74
53
|
"eslint-plugin-import-x": "^4.16.2",
|
|
75
|
-
"eslint-plugin-n": "^
|
|
54
|
+
"eslint-plugin-n": "^18.0.1",
|
|
76
55
|
"eslint-plugin-security": "^4.0.0",
|
|
77
56
|
"eslint-plugin-sonarjs": "^4.0.3",
|
|
78
57
|
"eslint-plugin-unicorn": "^63.0.0",
|
|
79
58
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
80
|
-
"globals": "^
|
|
59
|
+
"globals": "^17.6.0",
|
|
81
60
|
"npm-run-all": "^4.1.5",
|
|
82
61
|
"prettier": "^3.8.3",
|
|
83
|
-
"
|
|
62
|
+
"tsdown": "^0.22.0",
|
|
84
63
|
"typedoc": "^0.28.19",
|
|
85
64
|
"typescript": "^5.9.3",
|
|
86
65
|
"typescript-eslint": "^8.59.2",
|
|
87
|
-
"vitest": "^4.1.
|
|
66
|
+
"vitest": "^4.1.7"
|
|
88
67
|
},
|
|
89
68
|
"engines": {
|
|
90
69
|
"node": ">=24.0.0"
|
|
91
70
|
},
|
|
92
|
-
"
|
|
93
|
-
|
|
71
|
+
"scripts": {
|
|
72
|
+
"build": "tsdown",
|
|
73
|
+
"start": "node dist/cli.cjs",
|
|
74
|
+
"test": "vitest run",
|
|
75
|
+
"test:watch": "vitest",
|
|
76
|
+
"doc": "typedoc",
|
|
77
|
+
"check": "run-s check:*",
|
|
78
|
+
"check:format": "prettier \"./src/**/*.ts\" \"./examples/**/*.ts\" --check",
|
|
79
|
+
"check:format-config": "prettier \"./*.{js,mjs,json,md}\" \"./docs/**/*.md\" \"./.github/**/*.yml\" \"./configs/**/*.mjs\" --check",
|
|
80
|
+
"check:lint": "eslint \"./src/**/*.ts\" \"./examples/**/*.ts\"",
|
|
81
|
+
"check:lint-config": "eslint ./*.{js,mjs} \"./configs/**/*.mjs\"",
|
|
82
|
+
"check:spell": "cspell \"./src/**/*.ts\" \"./examples/**/*.ts\"",
|
|
83
|
+
"check:spell-config": "cspell \"./*.{js,mjs,json,md}\" \"./docs/**/*.md\" \"./.github/**/*.yml\" \"./configs/**/*.mjs\"",
|
|
84
|
+
"fix": "run-s fix:*",
|
|
85
|
+
"fix:format": "prettier \"./src/**/*.ts\" \"./examples/**/*.ts\" --write",
|
|
86
|
+
"fix:format-config": "prettier \"./*.{js,mjs,json,md}\" \"./docs/**/*.md\" \"./.github/**/*.yml\" \"./configs/**/*.mjs\" --write",
|
|
87
|
+
"fix:lint": "eslint \"./src/**/*.ts\" \"./examples/**/*.ts\" --fix",
|
|
88
|
+
"fix:lint-config": "eslint ./*.{js,mjs} \"./configs/**/*.mjs\" --fix"
|
|
89
|
+
}
|
|
90
|
+
}
|