@voxie/contacts.js 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/contacts.js +2480 -963
- package/dist/index.css +391361 -0
- package/package.json +12 -7
package/package.json
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
"description": "Start capturing contacts quickly",
|
|
4
4
|
"main": "index.ts",
|
|
5
5
|
"files": [
|
|
6
|
+
"dist/*.css",
|
|
6
7
|
"dist/*.js"
|
|
7
8
|
],
|
|
8
9
|
"module": "./dist/my-lib.js",
|
|
@@ -14,13 +15,17 @@
|
|
|
14
15
|
},
|
|
15
16
|
"type": "module",
|
|
16
17
|
"scripts": {
|
|
17
|
-
"build": "vite build",
|
|
18
|
-
"build:
|
|
18
|
+
"build": "vite build && npm run tailwind ",
|
|
19
|
+
"build:local": "VITE_CONNECTIONS_URL=http://localhost:8000 vite build && npm run tailwind ",
|
|
20
|
+
"build:production": "VITE_CONNECTIONS_URL=https://connections.voxie.com vite build && npm run tailwind ",
|
|
19
21
|
"clean": "rm -r dist",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
+
"dev": "node mock_server.js",
|
|
23
|
+
"eslint": "eslint --ext .ts",
|
|
24
|
+
"tailwind": "npx tailwindcss -i ./styles/index.css -o ./dist/index.css",
|
|
25
|
+
"test": "vitest --run",
|
|
22
26
|
"test:watch": "vitest",
|
|
23
|
-
"vite": "vite"
|
|
27
|
+
"vite": "vite",
|
|
28
|
+
"vite:local": "VITE_CONNECTIONS_URL=http://localhost:8000 vite"
|
|
24
29
|
},
|
|
25
30
|
"repository": {
|
|
26
31
|
"type": "git",
|
|
@@ -50,7 +55,7 @@
|
|
|
50
55
|
"vitest": "^0.25.3"
|
|
51
56
|
},
|
|
52
57
|
"engines": {
|
|
53
|
-
"node": "^
|
|
58
|
+
"node": "^18.12"
|
|
54
59
|
},
|
|
55
|
-
"version": "0.1.
|
|
60
|
+
"version": "0.1.3"
|
|
56
61
|
}
|