-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 894 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 894 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "pinky-compiler",
"version": "1.0.2",
"description": "A compiler for the pinky scripting language",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"lint": "biome lint --write",
"format": "biome format --write",
"test": "vitest"
},
"author": "Kevin Batdorf",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kevinbatdorf/pinky-compiler"
},
"bugs": {
"url": "https://github.com/kevinbatdorf/pinky-compiler/issues"
},
"homepage": "https://github.com/kevinbatdorf/pinky-compiler#readme",
"keywords": [
"compiler",
"pinky",
"scripting",
"language",
"typescript",
"wasm"
],
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@types/node": "^24.0.10",
"@vitest/ui": "^3.2.4",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}