-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.7 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.7 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
{
"version": "0.1.0",
"license": "MIT",
"name": "@placeos/ts-client",
"author": "Alex Sorafumo <alex@place.tech>",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"keywords": [
"placeos",
"browser",
"api"
],
"files": [
"dist",
"src"
],
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/placeos/ts-client.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"docs": "typedoc --excludePrivate --out docs src",
"lint": "eslint .",
"test": "vitest",
"test:cov": "vitest run --coverage",
"format": "prettier --write .",
"semantic-release": "semantic-release",
"prepare": "npm run build && node ./scripts/copy-file.js"
},
"peerDependencies": {
"date-fns": "^4.1.0",
"node-fetch": "^3.2.0",
"rxjs": "^7.8.2",
"ts-md5": "^2.0.1",
"websocket": "^1.0.34"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.0.7",
"date-fns": "^4.1.0",
"jsdom": "^26.0.0",
"node-fetch": "^3.2.0",
"prettier-plugin-organize-imports": "^4.1.0",
"rxjs": "^7.8.2",
"semantic-release": "^24.2.3",
"ts-md5": "^2.0.1",
"typedoc": "^0.27.9",
"typescript": "^5.7.3",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.7",
"websocket": "^1.0.34"
},
"dependencies": {
"byte-base64": "^1.1.0",
"fast-sha256": "^1.3.0"
}
}