-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "parserator",
"version": "0.1.27",
"description": "A parser combinator library inspired by Parsec and Effect-TS",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup && bun build.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build && bun test",
"publish:patch": "bun run build && npm version patch && npm publish --access public",
"publish:minor": "bun run build && npm version minor && npm publish --access public",
"publish:major": "bun run build && npm version major && npm publish --access public",
"release:patch": "bun run build && bun test && bun run publish:patch",
"release:minor": "bun run build && bun test && bun run publish:minor",
"release:major": "bun run build && bun test && bun run publish:major"
},
"keywords": [
"parser",
"parser-combinators",
"typescript",
"functional-programming"
],
"author": "Sai (https://bsky.app/profile/texoport.in)",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.10",
"tsup": "^8.3.5",
"typescript": "^5.0.0",
"vitest": "^1.2.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saiashirwad/parserator.git"
},
"bugs": {
"url": "https://github.com/saiashirwad/parserator/issues"
},
"homepage": "https://github.com/saiashirwad/parserator#readme"
}