forked from discord/embedded-app-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.56 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@discord/embedded-app-sdk",
"version": "1.4.2",
"description": "@discord/embedded-app-sdk enables you to build rich, multiplayer experiences inside Discord.",
"author": "Discord",
"license": "MIT",
"bugs": {
"url": "https://github.com/discord/embedded-app-sdk/issues"
},
"homepage": "https://github.com/discord/embedded-app-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/discord/embedded-app-sdk.git"
},
"main": "output/index.cjs",
"types": "output/index.d.ts",
"module": "output/index.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./output/index.d.ts",
"require": "./output/index.cjs",
"import": "./output/index.mjs"
}
},
"scripts": {
"test": "jest",
"test:dev": "jest --watch",
"dev": "npm run prepare -- --watch",
"build": "npm run prepare",
"lint:ts": "tsc",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"prepare": "husky && rollup --bundleConfigAsCjs -c rollup.config.mjs",
"sync": "zx ./scripts/syncRPCSchema.mjs"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"files": [
"output/**/*"
],
"dependencies": {
"@types/lodash.transform": "^4.6.6",
"@types/uuid": "^10.0.0",
"big-integer": "^1.6.48",
"decimal.js-light": "^2.5.0",
"eventemitter3": "^5.0.0",
"lodash.transform": "^4.6.0",
"uuid": "^10.0.0",
"zod": "^3.9.8"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.7",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@jest/types": "^29.6.3",
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/events": "^3.0.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-ssr-friendly": "^1.3.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-schema-to-zod": "^2.0.14",
"lint-staged": "^15.0.0",
"lodash.camelcase": "^4.3.0",
"prettier": "^3.2.5",
"rollup": "^4.14.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "~5.5.0",
"zx": "^8.0.0"
}
}