-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.81 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
{
"name": "@neuekit/utils",
"version": "2.5.3",
"license": "MIT",
"description": "Tree-shakeable JavaScript utilities, add yours today!",
"author": "Matt Pilott && Darby Manning",
"contributors": [
"Matt Pilott <[email protected]>",
"Darby Manning <[email protected]>"
],
"homepage": "https://github.com/neuekit/utilities#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/neuekit/utilities.git"
},
"bugs": {
"url": "https://github.com/neuekit/utilities/issues"
},
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"module": "lib/index.js",
"type": "module",
"exports": {
".": "./lib/index.js",
"./integrations": "./lib/integrations/index.js",
"./middleware": "./lib/middleware/index.js",
"./svelte": "./lib/svelte/index.js",
"./vanilla": "./lib/vanilla/index.js",
"./vite": "./lib/vite/index.js"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"release": "release-it",
"test": "uvu lib test.js -i _template",
"document": "documentation build ./lib/** -f md -o docs/index.md"
},
"devDependencies": {
"benchmark": "^2.1.4",
"documentation": "^14.0.3",
"esm": "^3.2.25",
"global-jsdom": "^24.0.0",
"jsdom": "^24.1.0",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"replace-in-file": "^8.1.0",
"tinydate": "^1.3.0",
"uvu": "^0.5.6",
"vite": "^5.3.4"
},
"dependencies": {
"svelte": "^4.2.18"
},
"bin": {
"create-module": "bin/createModule.js"
}
}