-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.93 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.93 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
{
"name": "@relatiohq/opencloud",
"version": "1.10.2",
"description": "Typed SDK for Roblox Open Cloud",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/relatiocc/opencloud.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit -p tsconfig.json",
"prepare": "pnpm run build",
"format": "prettier --write .",
"lint": "eslint .",
"lint:format": "prettier --check .",
"docs": "pnpm run docs:build",
"docs:api": "typedoc && node scripts/generate-api-sidebar.mjs",
"docs:dev": "pnpm run docs:api && vitepress dev src/docs",
"docs:build": "pnpm run docs:api && vitepress build src/docs",
"docs:preview": "vitepress preview src/docs"
},
"keywords": [
"roblox",
"opencloud",
"sdk",
"typescript"
],
"author": "@relatiohq",
"license": "MIT",
"packageManager": "pnpm@10.17.1",
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/recommended": "^1.0.10",
"@types/eslint": "^9.6.1",
"@types/node": "^24.8.1",
"@vitest/coverage-v8": "3.2.4",
"eslint": "^9.38.0",
"prettier": "^3.6.2",
"semantic-release": "^25.0.1",
"tsup": "^8.5.0",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vitepress": "^1.6.4",
"vitepress-plugin-group-icons": "^1.6.5",
"vitest": "^3.2.4"
}
}