This repository was archived by the owner on Jan 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.13 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.13 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@seamapi/third-party-assets",
"version": "0.0.6",
"description": "A collection of third-party assets - logos, device images etc",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"default": "./index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"module": "index.js",
"sideEffects": false,
"keywords": [
"node"
],
"homepage": "https://github.com/seamapi/third-party-assets",
"bugs": "https://github.com/seamapi/third-party-assets/issues",
"repository": "seamapi/third-party-assets",
"license": "MIT",
"author": {
"name": "Seam Labs, Inc.",
"email": "devops@getseam.com"
},
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"lib",
"src",
"dist",
"!**/*.test.ts"
],
"scripts": {
"start": "npm run examples",
"dev": "npm run start",
"build": "npm run build:entrypoints",
"prebuild": "tsx src/index.ts",
"postbuild": "node ./index.js",
"build:entrypoints": "npm run build:ts",
"postbuild:entrypoints": "tsup",
"build:ts": "tsc --project tsconfig.build.json",
"prebuild:ts": "del 'index.*' lib",
"postbuild:ts": "tsc-alias --project tsconfig.build.json",
"docs:build": "npm run examples:build",
"examples": "vite examples --host",
"examples:build": "vite build examples",
"examples:preview": "vite preview examples",
"preexamples:preview": "npm run examples:build",
"typecheck": "tsc",
"pretest": "tsx src/index.ts",
"test": "vitest",
"test:watch": "vitest --watch",
"test:debug": "vitest --inspect-brk",
"lint": "eslint --ignore-path .gitignore .",
"prelint": "prettier --check --ignore-path .gitignore .",
"postversion": "git push --follow-tags",
"format": "eslint --ignore-path .gitignore --fix .",
"preformat": "prettier --write --ignore-path .gitignore ."
},
"engines": {
"node": ">=18.12.0",
"npm": ">= 9.0.0"
},
"peerDependencies": {
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"@types/react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.8.10",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"del-cli": "^5.0.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.0",
"tsc-alias": "^1.8.2",
"tsup": "^8.0.1",
"tsx": "^4.7.1",
"typescript": "~5.3.0",
"vite": "^5.1.6",
"vitest": "^1.4.0",
"vite-tsconfig-paths": "^4.3.2"
}
}