-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.38 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.38 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
{
"name": "@jam.dev/sdk",
"version": "0.0.6",
"description": "The Jam SDK! Supercharge your bug reports.",
"homepage": "https://jam.dev/docs/product-features/dev-tools/jam.metadata",
"repository": {
"type": "git",
"url": "https://github.com/Strawberry-Jam-Manufacturers/sdk.git"
},
"keywords": [
"jam.dev",
"jamdotdev",
"jam",
"bug",
"reporting",
"sdk",
"metadata"
],
"license": "Apache-2.0",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/jamsdk.umd.cjs",
"module": "./dist/jamsdk.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/jamsdk.js",
"require": "./dist/jamsdk.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint './src/**/*.{ts,tsx}'"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.4.8",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.1",
"typescript": "*",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.5.1"
}
}