@standardnotes/simple-task-editor 1.3.10 → 1.6.0
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/CHANGELOG.md +126 -0
- package/LICENSE.md +0 -0
- package/app/lib/tasksManager.js +113 -108
- package/app/stylesheets/main.scss +1 -0
- package/dist/dist.css +1 -5
- package/dist/dist.js +1 -1
- package/dist/dist.js.LICENSE.txt +1 -1
- package/package.json +27 -18
- package/LICENSE +0 -661
package/dist/dist.js.LICENSE.txt
CHANGED
package/package.json
CHANGED
|
@@ -1,17 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@standardnotes/simple-task-editor",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"author": "Standard Notes Classic",
|
|
4
8
|
"main": "dist/dist.js",
|
|
9
|
+
"description": "A great way to manage short-term and long-term to-do's. You can mark tasks as completed, change their order, and edit the text naturally in place.",
|
|
5
10
|
"scripts": {
|
|
6
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
7
11
|
"build": "webpack --config webpack.prod.js",
|
|
8
12
|
"start": "webpack serve --config webpack.dev.js --progress --hot",
|
|
9
|
-
"lint": "eslint app/ --ext .js",
|
|
10
|
-
"lint:fix": "
|
|
11
|
-
"
|
|
13
|
+
"skip:lint": "eslint app/ --ext .js",
|
|
14
|
+
"lint:fix": "eslint app/ --ext .js --fix",
|
|
15
|
+
"test": "echo \"Error: no test specified\" && exit 0"
|
|
12
16
|
},
|
|
13
17
|
"sn": {
|
|
14
|
-
"
|
|
18
|
+
"name": "Checklist",
|
|
19
|
+
"content_type": "SN|Component",
|
|
20
|
+
"main": "dist/index.html",
|
|
21
|
+
"area": "editor-editor",
|
|
22
|
+
"spellcheckControl": true,
|
|
23
|
+
"note_type": "task",
|
|
24
|
+
"file_type": "md",
|
|
25
|
+
"showInGallery": true
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@standardnotes/component-relay": "standardnotes/component-relay#839ff5db9bc92db9d42cad8d202ddc4df729597d"
|
|
15
29
|
},
|
|
16
30
|
"devDependencies": {
|
|
17
31
|
"@babel/core": "^7.13.10",
|
|
@@ -20,16 +34,14 @@
|
|
|
20
34
|
"@babel/plugin-transform-runtime": "^7.13.0",
|
|
21
35
|
"@babel/preset-env": "^7.13.10",
|
|
22
36
|
"@babel/preset-react": "^7.12.13",
|
|
23
|
-
"@standardnotes/component-relay": "2.2.0",
|
|
24
37
|
"@standardnotes/eslint-config-extensions": "^1.0.2",
|
|
25
38
|
"babel-loader": "^8.2.2",
|
|
26
39
|
"css-loader": "^5.1.3",
|
|
27
|
-
"eslint": "
|
|
40
|
+
"eslint": "*",
|
|
28
41
|
"eslint-plugin-react": "^7.23.1",
|
|
29
42
|
"html-webpack-plugin": "^5.3.1",
|
|
30
|
-
"husky": "^5.2.0",
|
|
31
43
|
"mini-css-extract-plugin": "^1.3.9",
|
|
32
|
-
"node-sass": "
|
|
44
|
+
"node-sass": "*",
|
|
33
45
|
"prop-types": "^15.7.2",
|
|
34
46
|
"react": "^17.0.1",
|
|
35
47
|
"react-dom": "^17.0.1",
|
|
@@ -40,13 +52,10 @@
|
|
|
40
52
|
"style-loader": "^1.0.1",
|
|
41
53
|
"terser-webpack-plugin": "^5.1.1",
|
|
42
54
|
"validate-commit-msg": "2.x",
|
|
43
|
-
"webpack": "
|
|
44
|
-
"webpack-cli": "
|
|
45
|
-
"webpack-dev-server": "
|
|
46
|
-
"webpack-merge": "5.
|
|
55
|
+
"webpack": "*",
|
|
56
|
+
"webpack-cli": "*",
|
|
57
|
+
"webpack-dev-server": "*",
|
|
58
|
+
"webpack-merge": "^5.8.0"
|
|
47
59
|
},
|
|
48
|
-
"
|
|
49
|
-
"access": "public",
|
|
50
|
-
"registry": "https://registry.npmjs.org/"
|
|
51
|
-
}
|
|
60
|
+
"gitHead": "acc3dcf053c4bb32d11f63f4596315988661e7a5"
|
|
52
61
|
}
|