-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "@yasumu/core",
"version": "0.0.10",
"description": "Yasumu core api",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prepare": "yarn build",
"prepublishOnly": "yarn build",
"build": "rimraf dist && tsc && tsc-alias",
"build:check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yasumu-org/yasumu.git"
},
"keywords": [
"yasumu",
"core",
"api"
],
"author": "twlite <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yasumu-org/yasumu/issues"
},
"homepage": "https://github.com/yasumu-org/yasumu#readme",
"packageManager": "[email protected]",
"devDependencies": {
"@yasumu/tsconfig": "workspace:^",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10",
"tsx": "^4.17.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@yasumu/common": "workspace:^",
"@yasumu/schema": "workspace:^",
"graphql": "^16.9.0",
"mitt": "^3.0.1",
"nanoid": "^5.0.9"
}
}