-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.97 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.97 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "dfx",
"version": "1.0.10",
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977",
"type": "module",
"publishConfig": {
"access": "public"
},
"description": "Effect-TS discord library",
"author": "Tim Smart <hello@timsmart.co>",
"repository": {
"type": "git",
"url": "https://github.com/tim-smart/dfx.git"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": {
"import": "./dist/*.js",
"types": "./dist/*.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"license": "MIT",
"scripts": {
"prepublishOnly": "pnpm build",
"types": "./scripts/generate-client.sh",
"clean": "rimraf build tsbuildinfo dist .cache",
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "tsc -b tsconfig.build.json",
"build-watch": "tsc -b tsconfig.json --watch",
"check": "pnpm lint && pnpm tsgo -b tsconfig.json",
"lint": "oxlint src test examples",
"autofix": "pnpm lint --fix",
"circular": "madge --ts-config ./tsconfig.madge.json --circular --no-color --no-spinner --warning build/esm",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky && effect-language-service patch"
},
"peerDependencies": {
"effect": "4.0.0-beta.22"
},
"optionalDependencies": {
"discord-verify": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/plugin-syntax-import-attributes": "^7.28.6",
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@effect/babel-plugin": "^0.2.0",
"@effect/build-utils": "^0.8.9",
"@effect/language-service": "^0.77.0",
"@effect/platform-node": "4.0.0-beta.22",
"@tim-smart/openapi-gen": "^1.0.3",
"@types/chai": "^5.2.3",
"@types/node": "^25.3.3",
"@types/ws": "^8.18.1",
"@typescript/native-preview": "7.0.0-dev.20260301.1",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"babel-plugin-annotate-pure-calls": "^0.5.0",
"concurrently": "^9.2.1",
"dotenv": "^17.3.1",
"effect": "4.0.0-beta.22",
"husky": "^9.1.7",
"lerna": "^9.0.4",
"lint-staged": "^16.3.0",
"madge": "^8.0.0",
"oxlint": "^1.50.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "4.0.18"
},
"gitHead": "72e3d9162fa75a95672a698a62a34c141b3870a3",
"dependencies": {
"discord-api-types": "^0.38.40"
},
"lint-staged": {
"*.{ts,tsx}": [
"oxlint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}