-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.58 KB
/
package.json
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "jintr",
"version": "3.2.0",
"description": "A tiny JavaScript interpreter written in TypeScript.",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"scripts": {
"clean": "npx rimraf ./dist",
"build": "npm run clean && npm run lint && npm run build:nodes-map && npm run build:esm",
"build:esm": "npx tsc",
"build:nodes-map": "node ./scripts/build-nodes-map.js",
"lint": "npx eslint ./src/**/*.ts",
"lint:fix": "npx eslint --fix ./src/**/*.ts",
"prepare": "npm run build",
"watch": "npx tsc --watch",
"test": "vitest"
},
"author": "LuanRT <luan.lrt4@gmail.com> (https://github.com/LuanRT)",
"funding": [
"https://github.com/sponsors/LuanRT"
],
"keywords": [
"js",
"vm",
"typescript",
"javascript",
"interpreter"
],
"license": "MIT",
"exports": {
".": {
"node": {
"import": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"devDependencies": {
"@types/estree": "^1.0.6",
"@types/glob": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-plugin-tsdoc": "^0.2.16",
"glob": "^8.0.3",
"typescript": "^4.9.5",
"vitest": "^2.1.3"
},
"dependencies": {
"acorn": "^8.8.0"
},
"bugs": {
"url": "https://github.com/LuanRT/Jinter/issues"
},
"homepage": "https://github.com/LuanRT/Jinter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LuanRT/Jinter.git"
}
}