-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.67 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
67
{
"name": "@eatsjobs/ts-pattern-match",
"version": "0.1.1",
"description": "Simple pattern matching",
"type": "module",
"license": "MIT",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"publishConfig": {
"access": "public"
},
"author": "@eatsjobs Pasquale Mangialavori",
"repository": {
"type": "git",
"url": "https://github.com/eatsjobs/ts-pattern-match"
},
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">= 18",
"npm": ">= 8"
},
"scripts": {
"changeset": "changeset",
"prerelease": "npm run test && npm run build",
"release": "changeset publish",
"clean": "rm -rvf dist/",
"lint": "eslint 'src/**/*.ts'",
"fmt": "eslint 'src/**/*.ts' --fix",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "node --loader tsx --test src/tests/*.test.ts",
"watch": "tsc && vite build --watch",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@changesets/changelog-github": "^0.4.8",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"tsx": "^3.12.7",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vite-plugin-dts": "^2.3.0"
},
"lint-staged": {
"**/*": "eslint ."
}
}