-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.51 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.51 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
{
"name": "@stackone/file-picker",
"version": "0.7.1",
"description": "Navigate and select files from connected integrations",
"main": "dist/index.js",
"module": "dist/index.es.mjs",
"types": "dist/types/src/index.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "rollup -c --environment NODE_ENV:production",
"prebuild:dev": "npm run clean",
"build:dev": "rollup -c --environment NODE_ENV:development",
"code:format": "biome format ./src ./*.mjs",
"code:format:fix": "biome format --write ./src ./*.mjs",
"code:lint": "biome lint --error-on-warnings ./src ./*.mjs",
"code:lint:fix": "biome lint --write ./src ./*.mjs",
"code:check": "biome check ./src ./*.mjs",
"code:check:fix": "biome check --write ./src ./*.mjs",
"lint": "npm run code:check",
"lint:fix": "npm run code:check:fix",
"test": "vitest run --silent",
"test:watch": "vitest watch --silent",
"test:coverage": "vitest run --coverage --globals",
"prepare": "husky",
"publish-release": "npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StackOneHQ/file-picker.git"
},
"author": "StackOne",
"license": "MIT",
"bugs": {
"url": "https://github.com/StackOneHQ/file-picker/issues"
},
"homepage": "https://github.com/StackOneHQ/file-picker#readme",
"volta": {
"node": "20.18.1",
"npm": "10.8.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-angular": "^19.6.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@vitest/coverage-istanbul": "^2.1.8",
"@vitest/coverage-v8": "^2.1.8",
"esbuild": "^0.25.0",
"esbuild-plugin-tsc": "^0.4.0",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"rollup": "^4.28.1",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"unplugin-swc": "^1.5.1",
"vitest": "^2.1.8",
"vitest-mock-extended": "^2.0.2"
}
}