forked from managed-components/create-managed-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.27 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
{
"name": "june-so",
"version": "1.0.0",
"description": "A Managed Component for June.so",
"main": "dist/index.js",
"scripts": {
"fmt": "prettier --check .",
"fmt:fix": "prettier --write .",
"lint": "eslint --ext .ts,.js, src",
"lint:fix": "eslint --ext .ts,.js, src --fix",
"bundle": "node esbuild.js",
"build": "npm run test && npm run lint && npm run typecheck && npm run bundle",
"typecheck": "tsc --project tsconfig.build.json --noEmit",
"test": "vitest run --globals",
"test:dev": "vitest --globals"
},
"keywords": [
"webcm",
"managed-components",
"june-so"
],
"author": "",
"license": "Apache-2.0",
"prettier": "@demosjarco/prettier-config",
"devDependencies": {
"@cloudflare/workers-types": "^4.20250214.0",
"@demosjarco/prettier-config": "^1.0.1",
"@managed-components/types": "^1.3.14",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"dependencies": {
"@june-so/analytics-node": "^8.0.0",
"ua-parser-js": "^1.0.40"
}
}