forked from coinbase/client-analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.79 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
{
"name": "client-analytics",
"version": "0.0.3",
"type": "module",
"main": "./dist/client-analytics.umd.cjs",
"module": "./dist/client-analytics.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/client-analytics.js",
"require": "./dist/client-analytics.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"release:check": "changeset status --verbose --since=origin/master",
"release:publish": "yarn install && yarn build && changeset publish",
"release:version": "changeset version && yarn install --lockfile-only"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@types/md5": "^2.3.2",
"@types/node": "^20.4.6",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.9.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^15.2.0",
"prettier": "^3.0.0",
"typescript": "*",
"vite": "^5.0.6",
"vite-plugin-dts": "^3.6.4",
"vitest": "^1.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@types/react-router": "^5.1.20",
"md5": "^2.3.0",
"perfume.js": "^9.2.0"
}
}