-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.68 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "framecast",
"version": "0.0.12",
"description": "TypeScript cross-frame communication library.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"broadcast",
"cross-frame",
"library",
"typescript"
],
"scripts": {
"prepare": "npm run build",
"test": "jest",
"build": "tsup src/index.ts --format cjs,esm --dts-resolve --minify --clean --sourcemap --out-dir lib --replaceNodeEnv",
"lint": "eslint src",
"dev": "npx parcel example/index.html"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/customerio/framecast.git"
},
"bugs": {
"url": "https://github.com/customerio/framecast/issues"
},
"homepage": "https://github.com/customerio/framecast",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"__tests__/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"license": "MIT",
"private": false,
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"parcel": "^2.6.2",
"prettier": "^2.7.1",
"process": "^0.11.10",
"ts-jest": "^28.0.7",
"tsup": "^8.0.1",
"typescript": "^4.7.4"
},
"dependencies": {
"nanoid": "^3.3.8",
"nanostores": "^0.9.5",
"superjson": "^1.9.1"
}
}