pqwn 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.
Files changed (4) hide show
  1. package/LICENSE +72 -0
  2. package/README.md +5 -0
  3. package/index.js +2 -0
  4. package/package.json +19 -0
package/LICENSE ADDED
@@ -0,0 +1,72 @@
1
+ Proprietary Free-Use License
2
+
3
+ Copyright (c) 2026 Piqued AI, LLC. All rights reserved.
4
+
5
+ 1. Grant of Use. You may use this software free of charge for any
6
+ purpose (subject to the restrictions in Paragraph 2 of this license),
7
+ including personal, commercial, educational, and government use. No
8
+ account, registration, or license key is required.
9
+
10
+ 2. Restrictions. You may not: (a) redistribute, sublicense, sell,
11
+ lease, or make this software available to third parties as a download,
12
+ hosted service, managed service, or embedded component of another
13
+ product or service; (b) modify, adapt, or create derivative works of
14
+ this software; (c) reverse engineer, decompile, disassemble, or
15
+ extract source code from this software. For clarity, "hosted service"
16
+ means any arrangement where third parties outside your organization
17
+ access or benefit from the functionality of this software over a
18
+ network, whether or not you charge a fee. Use of this software within
19
+ your own organization on internal networks is permitted.
20
+
21
+ 3. Protocol Distinction. This software implements the pqdx protocol.
22
+ The pqdx protocol specification, schema, and file format are separately
23
+ licensed under CC-BY-ND 4.0 and are not subject to the restrictions
24
+ above. Nothing in this license restricts your right to create
25
+ independent implementations of the pqdx protocol. See https://pqdx.dev
26
+ for the open protocol.
27
+
28
+ 4. Ownership. This software and all copies remain the exclusive
29
+ property of Piqued AI, LLC. All rights not expressly granted in
30
+ Paragraph 1 are reserved.
31
+
32
+ 5. Termination. If you breach any term of this license, Piqued AI, LLC
33
+ will provide written notice describing the breach. You have 30 days
34
+ from receipt of notice to cure the breach. If the breach is not cured
35
+ within 30 days, this license terminates automatically. Upon
36
+ termination, you must cease all use of the software and destroy all
37
+ copies in your possession. Termination does not limit Piqued AI's
38
+ right to seek damages or other relief for the breach.
39
+
40
+ 6. No Warranty. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF
41
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES
42
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
43
+ NONINFRINGEMENT. IN NO EVENT SHALL PIQUED AI, LLC BE LIABLE FOR ANY
44
+ CLAIM, DAMAGES, OR OTHER LIABILITY ARISING FROM THE USE OF THIS
45
+ SOFTWARE.
46
+
47
+ 7. Venue and Governing Law. By use of this license, you submit to the
48
+ jurisdiction and venue of the state and federal courts located in Kent
49
+ County, Delaware for any legal claim arising out of your use or
50
+ violation of this license. This license is governed by the laws of the
51
+ State of Delaware.
52
+
53
+ 8. Violation. If you violate the terms of this license, including but
54
+ not limited to Paragraph 2(a), (b), or (c), Piqued AI, LLC has the
55
+ right to seek injunctive relief against you and you consent to such
56
+ action being brought in the state and federal courts located in Kent
57
+ County, Delaware, as set forth in Paragraph 7, and to actual or
58
+ liquidated damages of $1,000 per day of continuing violation (which
59
+ you agree is reasonable and not punitive), plus attorneys' fees
60
+ incurred.
61
+
62
+ 9. Assignment. You may not assign or transfer this license or any
63
+ rights granted under it. Piqued AI, LLC may assign this license
64
+ freely, including in connection with a merger, acquisition, or sale
65
+ of assets.
66
+
67
+ 10. General. If any provision of this license is held unenforceable,
68
+ the remaining provisions remain in full force and effect. This license
69
+ constitutes the entire agreement between you and Piqued AI, LLC
70
+ regarding use of the software and supersedes all prior agreements,
71
+ representations, and understandings. Piqued AI, LLC's failure to
72
+ enforce any provision does not constitute a waiver of that provision.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # pqwn
2
+
3
+ Reserved for the pqdx ecosystem.
4
+
5
+ https://pqdx.dev
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // Piqued Windows — Windows-specific ops: PowerToys, Terminal profiles, Quick Access, Task Scheduler, Authenticode.
2
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "pqwn",
3
+ "version": "0.0.1",
4
+ "description": "Piqued Windows \u2014 Windows-specific ops: PowerToys, Terminal profiles, Quick Access, Task Scheduler, Authenticode.",
5
+ "main": "index.js",
6
+ "author": "Jeremy Dodson <jeremy@piqued-ai.com>",
7
+ "license": "SEE LICENSE IN LICENSE",
8
+ "homepage": "https://pqdc.dev/pqwn",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/pqdc/pqwn"
12
+ },
13
+ "keywords": [
14
+ "pqdc",
15
+ "pqdx",
16
+ "governance",
17
+ "developer-tools"
18
+ ]
19
+ }