-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "insitux",
"version": "24.10.30",
"description": "Extensible scripting language written in portable TypeScript.",
"main": "dist/invoker.js",
"types": "dist/invoker.d.ts",
"bin": {
"ix": "./dist/repl.js"
},
"scripts": {
"start": "node dist/repl.js",
"build": "webpack",
"watch": "webpack --watch",
"build-npm": "webpack && tsc -p tsconfig.json"
},
"dependencies": {
"prompt-sync": "^4.2.0"
},
"devDependencies": {
"@types/git-clone": "^0.2.2",
"@types/node": "^20.8.9",
"@types/prompt-sync": "^4.2.2",
"esbuild-loader": "^4.0.2",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phunanon/Insitux.git"
},
"author": "Patrick Bowen",
"license": "MIT",
"bugs": {
"url": "https://github.com/phunanon/Insitux/issues"
},
"homepage": "https://insitux.github.io/",
"keywords": [
"insitux",
"script",
"scripting language",
"programming language"
]
}