-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.58 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
{
"name": "twblueskyapi",
"version": "1.0.0",
"description": "Interact with the BlueSky API!",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src",
"lint:type": "tsc --noEmit -p ./tsconfig.json",
"fix": "eslint ./src --fix",
"start": "tsup src/index.ts && http-server ./dist -p 8000 --cors",
"start-OAuth": "tsup src/index-WithOAuth.ts && http-server ./dist -p 8000 --cors",
"build": "tsup src/index.ts",
"build-OAuth": "tsup src/index-WithOAuth.ts",
"build:turbowarp": "tsup src/index.ts && (npx prettier --config turbowarp/.prettierrc --parser acorn < dist/index.global.js) > dist/index.global.formatted.js && rimraf dist/index.global.js",
"build-OAuth:turbowarp": "tsup src/index-WithOAuth.ts && (npx prettier --config turbowarp/.prettierrc --parser acorn < dist/index.global.js) > dist/index.global.formatted.js && rimraf dist/index.global.js",
"format": "prettier ./src -c -w",
"lint:format": "prettier ./src -c"
},
"author": "Hammouda101010",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@turbowarp/types": "github:TurboWarp/types-tw#tw",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"http-server": "^14.1.1",
"prettier": "^3.4.2",
"tsup": "^8.0.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@atproto/api": "^0.13.20",
"@atproto/oauth-client-browser": "^0.3.7",
"mime": "^4.0.6"
}
}