-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.84 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.84 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
62
63
64
65
66
{
"name": "@guyo13/langium-utils",
"version": "1.1.1",
"description": "Utilities for language development using Langium",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
},
"./validator-util": {
"types": "./types/validator-util.d.ts",
"require": "./lib/cjs/validator-util.js",
"import": "./lib/esm/validator-util.js"
},
"./traversal": {
"types": "./types/traversal.d.ts",
"require": "./lib/cjs/traversal.js",
"import": "./lib/esm/traversal.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "biome format --write src",
"lint": "biome lint src",
"lint:fix": "biome lint --write src",
"prepare": "pnpm run build",
"clean": "rm -rf lib types",
"prebuild": "pnpm run clean",
"build:types": "tsc --emitDeclarationOnly",
"build:esbuild": "node build.js",
"build": "pnpm run build:types && pnpm run build:esbuild",
"postbuild-esm": "echo '{\"type\": \"module\"}' > lib/esm/package.json",
"postbuild-cjs": "echo '{\"type\": \"commonjs\"}' > lib/cjs/package.json",
"postbuild": "npm run postbuild-esm && npm run postbuild-cjs"
},
"files": [
"src/",
"lib/",
"types/"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guyo13/langium-utils.git"
},
"keywords": [
"langium",
"language-development"
],
"author": "Guy Or",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/guyo13/langium-utils/issues"
},
"homepage": "https://github.com/guyo13/langium-utils#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"esbuild": "^0.24.2",
"langium": "^3.3.0",
"typescript": "^5.7.2"
}
}