-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.22 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.22 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
{
"name": "customerio-gist-web",
"version": "3.20.3",
"description": "Build beautiful in-app flows with no code and deliver them instantly to your app. http://customer.io",
"private": false,
"files": [
"dist"
],
"scripts": {
"start": "npm-run-all --parallel watch:server watch:build",
"build:prod": "webpack --mode=production --output-filename gist.min.js && npm run build:types",
"build:types": "tsc --project tsconfig.build.json",
"watch:build": "webpack --watch --progress --mode=development",
"watch:server": "http-server",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json,md}\""
},
"types": "./dist/types/index.d.ts",
"browser": "dist/gist.min.js",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/gist.min.js",
"import": "./dist/gist.min.js"
},
"author": "Customer.io (https://customer.io)",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/uuid": "^10.0.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^15.11.0",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"uuid": "^8.3.2"
},
"repository": {
"type": "git",
"url": "git://github.com/customerio/gist-web.git"
},
"keywords": [
"gist",
"in-app",
"messages",
"product",
"messaging",
"in-product",
"gist.build",
"customerio"
],
"bugs": {
"url": "https://github.com/customerio/gist-web/issues"
},
"homepage": "https://github.com/customerio/gist-web",
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
}
}