-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "splitcode",
"version": "0.3.0",
"description": "SplitCode — split large JS, TS, HTML or Python files into smaller dependency-ordered files with pure static analysis. No bundler, drop-in loader.",
"bin": {
"splitcode": "split-js.js"
},
"files": [
"split-js.js",
"lib/",
"README.md"
],
"keywords": [
"javascript",
"typescript",
"python",
"html",
"split",
"code-splitting",
"static-analysis",
"refactoring",
"modularity"
],
"license": "MIT",
"author": "unn-Known1 <ptelgm.yt@gmail.com>",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "node test/run.js",
"bench": "node test/bench.js",
"prepack": "node --check split-js.js && node --check lib/backend.js && node --check lib/frontend-js.js && node --check lib/frontend-ts.js && node --check lib/frontend-html.js && node --check lib/frontend-py.js && node --check lib/preflight.js"
},
"repository": {
"type": "git",
"url": "https://github.com/unn-Known1/splitcode.git"
},
"dependencies": {
"acorn": "^8.18.0",
"node-html-parser": "^9.0.4"
},
"optionalDependencies": {
"typescript": "^5.9.3"
}
}