-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.46 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.46 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@moikapy/kapy-script",
"version": "0.1.2",
"description": "The AI-native programming language. A kapy CLI extension for compiling, running, and testing .kapy files.",
"keywords": [
"kapy-extension",
"language",
"compiler",
"ai",
"transpiler",
"kapy"
],
"license": "MIT",
"author": "0xKobold",
"repository": {
"type": "git",
"url": "https://github.com/moikapy/kapy-script"
},
"bugs": {
"url": "https://github.com/moikapy/kapy-script/issues"
},
"homepage": "https://github.com/moikapy/kapy-script#readme",
"main": "src/extension/index.ts",
"types": "src/extension/index.ts",
"exports": {
".": {
"import": "./src/extension/index.ts",
"require": "./src/extension/index.ts",
"default": "./src/extension/index.ts",
"types": "./src/extension/index.ts"
}
},
"files": [
"src/",
"README.md",
"LICENSE",
"CHANGELOG.md",
"docs/"
],
"scripts": {
"dev": "bun run src/cli/main.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"kapy": "bun run src/cli/main.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun test",
"release": "npm publish --access public"
},
"dependencies": {
"@moikapy/kapy": "^0.3.0",
"@moikapy/kapy-runtime": "^0.1.0"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"@types/node": "^25.6.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@moikapy/kapy": "^0.3.0"
}
}