-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "rblx.js",
"description": "A JavaScript wrapper for interacting with the ROBLOX OpenCloud API.",
"repository": "https://github.com/CompeyDev/roblox.js",
"version": "1.4.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "hi@devcomp.xyz",
"license": "MIT",
"keywords": [
"roblox",
"roblox.js",
"opencloud"
],
"private": false,
"scripts": {
"watch": "tsc -w",
"build": "tsc -b --verbose && bash export.sh",
"test": "mocha tests/tests.mocha.ts",
"push": "pnpm test && git push origin",
"prepublish": "pnpm build && pnpm test && pnpm bump:release",
"publish": "pnpm publish dist",
"bump:update": "changeset",
"bump:release": "changeset version"
},
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.2",
"lodash": "^4.17.21",
"urlcat": "^2.0.4"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/chai": "^4.3.3",
"@types/lodash": "^4.14.185",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.18",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"files": [
"dist/*",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
}
}