-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 823 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 823 Bytes
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
{
"name": "implish",
"version": "0.0.1",
"description": "A small programming language.",
"type": "module",
"scripts": {
"build": "tsc",
"build:core": "tsc",
"watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"preview": "vite preview",
"repl": "node dist/imp-cmd.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tangentstorm/implish.git"
},
"author": "tangentstorm <michal.wallace@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tangentstorm/implish/issues"
},
"homepage": "https://github.com/tangentstorm/implish#readme",
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@types/node": "^24.8.1",
"vite": "^7.2.2",
"typescript": "^5.6.3"
}
}