-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.04 KB
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
{
"name": "dragifyjs",
"description": "Free and Open Source Web Builder Framework",
"version": "1.0.0",
"author": "Anand Kumar ",
"license": "BSD-3-Clause",
"homepage": "https://github.com/CraftFossLabs/dragifyJS.git",
"main": "dist/dragify.min.js",
"types": "dist/index.d.ts",
"module": "dist/dragify.mjs",
"exports": {
".": {
"import": "./dist/dragify.mjs",
"require": "./dist/dragify.min.js",
"types": "./dist/index.d.ts"
},
"./*": "./*"
},
"files": [
"dist",
"locale",
"src/styles"
],
"sideEffects": [
"*.css",
"*.scss"
],
"repository": {
"type": "git",
"url": "https://github.com/CraftFossLabs/dragifyJS.git"
},
"dependencies": {
"@types/backbone": "1.4.15",
"backbone": "1.4.1",
"backbone-undo": "0.2.6",
"codemirror": "5.63.0",
"codemirror-formatting": "1.0.0",
"html-entities": "~1.4.0",
"promise-polyfill": "8.3.0",
"underscore": "1.13.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@babel/register": "^7.25.9",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@swc/register": "^0.1.10",
"@types/markdown-it": "14.1.2",
"@types/pretty": "^2.0.3",
"cross-env": "^7.0.3",
"dragifyjs-core-cli": "^1.0.3",
"eslint": "^9.10.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "24.1.1",
"lint-staged": "^15.2.9",
"npm-run-all": "4.1.5",
"postcss": "8",
"prettier": "^3.3.3",
"pretty": "2.0.0",
"sass": "1.80.3",
"semantic-release": "^24.1.1",
"sucrase": "^3.35.0",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"whatwg-fetch": "3.6.20"
},
"resolutions": {
"backbone-undo/backbone": "1.3.3",
"backbone-undo/underscore": "1.13.1"
},
"keywords": [
"dragify",
"dragifyjs",
"wysiwyg",
"web",
"template",
"editor",
"newsletter",
"site",
"builder"
],
"scripts": {
"build": "npm run build-all",
"build-all": "run-s build:*",
"build:js": "node node_modules/dragifyjs-core-cli/dist/cli.js build --dts=skip --patch=false --targets=\"> 1%, ie 11, safari 8, not dead\" --statsOutput=\"stats.json\" --localePath=\"src/i18n/locale\"",
"build:mjs": "cross-env BUILD_MODULE=true node node_modules/dragifyjs-core-cli/dist/cli.js build --dts='skip' --patch=false --targets=\"> 1%, ie 11, safari 8, not dead\"",
"build:css": "sass src/styles/scss/main.scss dist/css/dragify.min.css --no-source-map --style=compressed --load-path=node_modules",
"ts:build": "node node_modules/dragifyjs-core-cli/dist/cli.js build --dts='only' --patch=false",
"ts:check": "tsc --noEmit --esModuleInterop dist/index.d.ts",
"start": "cross-env NODE_ENV=development run-p start:*",
"start:js": "node node_modules/dragifyjs-core-cli/dist/cli.js serve",
"start:css": "npm run build:css -- --watch",
"test": "jest --forceExit",
"test:dev": "jest --watch"
}
}