This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.82 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@usher.so/js",
"version": "0.2.11",
"description": "UsherJS Library used for integrating Conversion Tracking",
"author": "Ryan Soury <ryan@usher.so>",
"homepage": "https://usher.so/",
"license": "MIT",
"private": false,
"main": "build/index.cjs.js",
"browser": "build/index.js",
"module": "build/index.esm.js",
"files": [
"/build"
],
"types": "build/src/typings.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/usherlabs/usher.js.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"start": "cross-env NODE_ENV=development rollup -c",
"dev": "cross-env NODE_ENV=development rollup -c -w",
"build": "run-s prod compile",
"prod": "cross-env NODE_ENV=production rollup -c",
"compile": "tsc --project ./tsconfig.build.json && resolve-tspaths",
"format": "prettier \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\" --write",
"lint": "eslint -c ./.eslintrc \"src/**/*.{js,ts}\"",
"ts": "tsc --noEmit",
"test": "echo \"No tests available\"",
"docs": "typedoc ./src/index.ts ./src/actions/index.ts ./src/types.ts",
"clean": "del ./dist ./build ./docs",
"local": "symlink ./build ./tools/build && serve -d ./tools -p 3001"
},
"dependencies": {
"cuid": "^2.1.8",
"js-base64": "^3.7.2",
"ky": "^0.31.0",
"ky-universal": "^0.10.1",
"lscache": "^1.3.2"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@gedhean/rollup-plugin-dotenv": "^0.3.1",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@swc/core": "^1.2.213",
"@swc/helpers": "^0.4.3",
"@types/lscache": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"cross-env": "^7.0.3",
"del-cli": "^4.0.1",
"dotenv": "^16.0.0",
"esbuild": "^0.18.15",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.1.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"np": "^7.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"resolve-tspaths": "^0.6.0",
"rollup": "^2.70.1",
"rollup-plugin-dts-bundle": "^1.0.0",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.9.0",
"rollup-plugin-typescript2": "^0.32.1",
"rollup-plugin-visualizer": "^5.6.0",
"serve": "^14.0.1",
"symlink-cli": "^1.0.0",
"tsc": "^2.0.4",
"typedoc": "^0.23.5",
"typescript": "^4.7.4"
}
}