-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.12 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
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
76
77
78
79
80
81
82
83
84
{
"name": "@placeos/cloud-uploads",
"version": "0.2.4-dev",
"description": "Signed direct to cloud uploads",
"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"
},
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PlaceOS/cloud-uploads.git"
},
"author": "Alex Sorafumo",
"license": "ISC",
"bugs": {
"url": "https://github.com/PlaceOS/cloud-uploads/issues"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "jsdom",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"collectCoverageFrom": [
"src/**/*.{js,ts}"
]
},
"homepage": "https://github.com/PlaceOS/cloud-uploads#readme",
"release": {
"branches": [
"develop",
"next"
]
},
"devDependencies": {
"@vitest/coverage-v8": "^3.0.7",
"prettier-plugin-organize-imports": "^4.1.0",
"rxjs": "^7.8.2",
"semantic-release": "^24.2.3",
"ts-md5": "^1.3.1",
"typedoc": "^0.27.9",
"typescript": "^5.8.0",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.7"
},
"peerDependencies": {
"rxjs": "^7.8.2",
"ts-md5": "^1.3.1"
}
}