-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1.28 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
{
"name": "manate",
"version": "1.0.0",
"repository": "git@github.com:tylerlong/manate.git",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "tsc --jsx react --skipLibCheck --noEmit --target ESNext --moduleResolution NodeNext --module NodeNext ./src/*.ts ./test/*.ts ./test/*.tsx && eslint . --fix && prettier --write . && sort-package-json",
"prepublishOnly": "yarn lint && yarn test && tsc src/index.ts src/react.ts --declaration --outDir . --target ESNext --moduleResolution NodeNext --module NodeNext --skipLibCheck --stripInternal",
"postpublish": "rm index.* manate-event.* react.* event-emitter.* transactions.*",
"test": "vitest run"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint-config-tyler": "^0.2.1",
"jsdom": "^25.0.1",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sort-package-json": "^2.10.1",
"ttpt": "^0.13.0",
"typescript": "^5.6.3",
"vitest": "^2.1.5",
"wait-for-async": "^0.7.0",
"yarn-upgrade-all": "^0.7.4"
}
}