-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
103 lines (103 loc) · 3.03 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
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@adrii_/wizard-js",
"version": "2.0.3",
"description": "A lightweight wizard UI component that supports accessibility and HTML5 in vanilla JavaScript.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"./dist",
"./src",
"./README.md"
],
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json",
"./style.css": "./dist/main.min.css"
},
"sideEffects": [
"*.css",
"*.scss"
],
"scripts": {
"build": "npm update && webpack --config webpack/webpack.prod.js && npm run build:src && npm run build:test",
"build:src": "babel src --out-dir lib --copy-files",
"build:test": "cd test && npm run bundle",
"start": "webpack serve --config webpack/webpack.dev.js",
"dev": "webpack --watch --config webpack/webpack.dev.js",
"lint": "eslint src webpack lib"
},
"keywords": [
"javascript",
"npm",
"wizard",
"ui",
"component",
"accessibility",
"html5",
"vanilla-js",
"wizard-component",
"step-wizard",
"form-wizard",
"multi-step-form"
],
"author": "Adrián Villamayor Sánchez",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AdrianVillamayor/Wizard-JS.git"
},
"bugs": {
"url": "https://github.com/AdrianVillamayor/Wizard-JS/issues"
},
"homepage": "https://github.com/AdrianVillamayor/Wizard-JS#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/AdrianVillamayor"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"contributors": [
{
"name": "Adrián Villamayor Sánchez",
"email": "[email protected]",
"url": "https://github.com/AdrianVillamayor"
}
],
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.22.9",
"@babel/plugin-syntax-import-attributes": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@eslint/js": "^9.12.0",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.0",
"css-loader": "^7.1.1",
"css-minimizer-webpack-plugin": "^7.0.0",
"cssnano": "^6.1.2",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"sass": "^1.75.0",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.3",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
},
"directories": {
"test": "test",
"src": "src"
}
}