-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
45
46
47
{
"name": "@pomsky-lang/parser",
"version": "0.1.0",
"description": "JavaScript parser for the Pomsky regular expression language",
"collaborators": [
"Ludwig Stecher <ludwig.stecher@gmx.de>"
],
"license": "MIT OR Apache-2.0",
"homepage": "https://pomsky-lang.org",
"repository": "github:pomsky-lang/pomsky-parser",
"type": "module",
"module": "./dist/index.mjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./rule": {
"require": "./dist/rule.js",
"import": "./dist/rule.mjs",
"types": "./dist/rule.d.ts"
},
"./tokenizer": {
"require": "./dist/tokenizer.js",
"import": "./dist/tokenizer.mjs",
"types": "./dist/tokenizer.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"lint": "biome lint",
"test": "vitest",
"build": "rm -rf out dist && tsc && rollup -c rollup.config.js",
"prepublish": "pnpm run build"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"rollup": "^4.28.0",
"typescript": "~5.7.2",
"vitest": "^2.1.8"
}
}