-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "@logto/chrome-extension",
"version": "0.1.17",
"description": "Logto Chrome extension SDK",
"type": "module",
"files": [
"lib"
],
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"default": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"precommit": "lint-staged",
"build": "rm -rf lib && tsc",
"lint": "eslint --ext .ts --ext .tsx src",
"prepack": "pnpm build"
},
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/logto-io/js.git",
"directory": "packages/chrome-extension-sample"
},
"dependencies": {
"@logto/browser": "workspace:^"
},
"devDependencies": {
"@silverhand/eslint-config": "^6.0.1",
"@silverhand/ts-config": "^6.0.0",
"chrome-types": "^0.1.276",
"eslint": "^8.57.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"typescript": "^5.3.3"
},
"eslintConfig": {
"extends": "@silverhand/react"
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"publishConfig": {
"access": "public"
}
}