@dynamods/dynamo-pm-wizard 0.0.1

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/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "@dynamods/dynamo-pm-wizard",
3
+ "version": "0.0.1",
4
+ "description": "Dynamo Package Manager Publish Wizard",
5
+ "author": "Autodesk Inc.",
6
+ "main": "index.tsx",
7
+ "scripts": {
8
+ "start": "vite",
9
+ "build": "vite build && node inline-bundle.js",
10
+ "lint:check": "eslint src/ tests/",
11
+ "lint:fix": "eslint src/ tests/ --fix",
12
+ "test:unit": "cross-env NODE_ENV=test jest",
13
+ "test": "npm run test:unit",
14
+ "clean": "rm -rf dist",
15
+ "license:direct": "mkdir -p license_output && npx @adsk/adsk-npm-license-puller --path . --app-name '@dynamods/dynamo-pm-wizard' --verbose --about-box ./license_output/about-box_direct.html --about-box-type desktop --year $(date +%Y) --paos ./license_output/paos_direct.csv",
16
+ "license:transitive": "npx @adsk/adsk-npm-license-puller --path . --app-name '@dynamods/dynamo-pm-wizard' --verbose --about-box ./license_output/about-box_transitive.html --about-box-type desktop --transitive --year $(date +%Y) --paos ./license_output/paos_transitive.csv",
17
+ "license": "npm run license:direct && npm run license:transitive",
18
+ "version:patch": "npm version patch --no-git-tag-version"
19
+ },
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "keywords": [],
24
+ "license": "ISC",
25
+ "dependencies": {
26
+ "@dynamo/dpm-compatibility-editor": "^0.0.2",
27
+ "@weave-mui/box": "^3.0.1",
28
+ "@weave-mui/button": "^1.0.9",
29
+ "@weave-mui/checkbox": "^3.0.1",
30
+ "@weave-mui/chip": "^1.0.7",
31
+ "@weave-mui/form-control": "^1.0.4",
32
+ "@weave-mui/form-label": "^1.0.6",
33
+ "@weave-mui/grid": "^3.0.1",
34
+ "@weave-mui/icons-weave": "^1.0.5",
35
+ "@weave-mui/menu-item": "^3.0.1",
36
+ "@weave-mui/select": "^1.0.10",
37
+ "@weave-mui/styles": "^1.0.16",
38
+ "@weave-mui/text-field": "^3.0.1",
39
+ "@weave-mui/tooltip": "^1.0.7",
40
+ "@weave-mui/tree-view": "^3.0.1",
41
+ "@weave-mui/typography": "^1.0.7",
42
+ "react": "^18.3.1",
43
+ "react-accessible-treeview": "^2.10.0",
44
+ "react-dom": "^18.3.1",
45
+ "react-hook-form": "^7.54.2",
46
+ "react-icons": "^5.4.0",
47
+ "react-intl": "^6.8.9",
48
+ "redux-mock-store": "^1.5.5",
49
+ "sass": "^1.83.4"
50
+ },
51
+ "devDependencies": {
52
+ "@testing-library/jest-dom": "^6.6.3",
53
+ "@testing-library/react": "^16.0.1",
54
+ "@types/jest": "^29.5.14",
55
+ "@types/react": "^18.2.0",
56
+ "@types/react-dom": "^18.2.0",
57
+ "@vitejs/plugin-react": "^4.3.4",
58
+ "cross-env": "^7.0.3",
59
+ "eslint": "^9.16.0",
60
+ "eslint-plugin-react": "^7.37.2",
61
+ "identity-obj-proxy": "^3.0.0",
62
+ "jest": "^29.7.0",
63
+ "jest-environment-jsdom": "^29.7.0",
64
+ "rollup-plugin-visualizer": "^5.14.0",
65
+ "sass-embedded": "^1.83.1",
66
+ "ts-jest": "^29.2.5",
67
+ "ts-node": "^10.9.2",
68
+ "typescript": "^5.7.3",
69
+ "vite": "^6.0.3",
70
+ "vite-plugin-css-injected-by-js": "^3.5.2"
71
+ }
72
+ }