forked from rhinestonewtf/module-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 2.13 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
{
"type": "module",
"scripts": {
"prepare": "npm run build",
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc --project ./tsconfig.build.json --module commonjs --outDir ./src/_cjs --removeComments --verbatimModuleSyntax false && printf '{\"type\":\"commonjs\"}' > ./src/_cjs/package.json",
"build:esm": "tsc --project ./tsconfig.build.json --module es2015 --outDir ./src/_esm && tsc-alias --project ./tsconfig.build.json --outDir ./src/_esm && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./src/_esm/package.json",
"build:types": "tsc --project ./tsconfig.build.json --module esnext --declarationDir ./src/_types --outDir ./src/_esm --emitDeclarationOnly --declaration --declarationMap",
"clean": "rimraf src/_esm src/_cjs src/_types",
"test": "jest",
"test:e2e": "jest --config ./jest-e2e.json",
"test:coverage": "jest --coverage",
"test:badges": "jest --coverage && jest-coverage-badges output './badges'",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"prettier:check": "prettier --check \"**/*.{json,md,svg,yml}\"",
"prettier:write": "prettier --write \"**/*.{json,md,svg,yml}\"",
"changeset": "changeset",
"changeset:release": "npm run build && changeset publish",
"changeset:version": "changeset version && npm run install --lockfile-only",
"size": "size-limit"
},
"devDependencies": {
"@apollo/client": "^3.10.1",
"@changesets/cli": "^2.27.1",
"@size-limit/esbuild-why": "^11.1.1",
"@size-limit/preset-small-lib": "^11.1.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"bufferutil": "^4.0.8",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-coverage-badges": "^1.1.2",
"permissionless": "0.1.39",
"rimraf": "^5.0.5",
"size-limit": "^11.1.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.3.3",
"utf-8-validate": "^6.0.3",
"viem": "^2.4.1",
"ws": "^8.16.0"
},
"dependencies": {
"dotenv": "^16.4.5",
"solady": "^0.0.235"
}
}