-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 1.94 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "pattycake",
"version": "0.0.2",
"description": "Zero-runtime pattern matching",
"keywords": [
"pattern",
"matching",
"pattern-matching",
"typescript",
"match-with",
"match",
"switch",
"adt"
],
"homepage": "https://github.com/aidenybai/pattycake#readme",
"bugs": {
"url": "https://github.com/aidenybai/pattycake/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/aidenybai/pattycake.git"
},
"funding": "https://github.com/sponsors/aidenybai",
"license": "MIT",
"author": "Zack Radisic, Aiden Bai",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"bump": "pnpm run build && pnpx bumpp && npm publish",
"test": "vitest --globals"
},
"prettier": "@vercel/style-guide/prettier",
"dependencies": {
"@babel/core": "^7.22.20",
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/plugin-syntax-typescript": "^7.22.5",
"@babel/types": "^7.22.19",
"unplugin": "^1.4.0"
},
"devDependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/preset-typescript": "^7.22.15",
"@babel/traverse": "^7.22.20",
"@types/babel-plugin-syntax-jsx": "^6.18.0",
"@types/babel-types": "^7.0.12",
"@types/babel__core": "^7.20.2",
"@types/babel__helper-plugin-utils": "^7.10.1",
"@types/babel__traverse": "^7.20.2",
"@vercel/style-guide": "^5.0.1",
"babel-plugin-tester": "^11.0.4",
"bumpp": "^9.2.0",
"chalk": "^5.3.0",
"prettier": "^3.0.3",
"ts-pattern": "^5.0.5",
"tsup": "^7.2.0",
"typescript": "link:@vercel/style-guide/typescript",
"vite": "^4.4.9",
"vitest": "^0.34.4"
}
}